
Explanation:
The correct answer is B because the Nearline storage class is designed for data that is accessed no more than once per month, making it ideal for this scenario. The -c parameter is necessary to specify the storage class.
rm is used to remove data, not create a bucket.For more details, refer to the GCP documentation on Storage Classes.
Ultimate access to all questions.
Which command should you use to create a storage bucket named 'archive_bucket' that is optimized for data accessed once per month?
A
gsutil rm -coldline gs://archive_bucket
B
gsutil mb -c nearline gs://archive_bucket
C
gsutil mb -c coldline gs://archive_bucket
D
gsutil mb gs://archive_bucket
No comments yet.