ASSOCIATE-CLOUD-ENGINEER · Question #35
Which of the following command is used to create buckets in Cloud Storage?
The correct answer is C. gsutil mb. This question asks for the correct command to create a new bucket in Google Cloud Storage.
Question
Options
- Agcloud storage buckets create
- Bgsutil storage buckets create
- Cgsutil mb
- Dgcloud mb
How the community answered
(14 responses)- C93% (13)
- D7% (1)
Why each option
This question asks for the correct command to create a new bucket in Google Cloud Storage.
While `gcloud storage buckets create` is a valid and modern command, `gsutil mb` is the traditional, concise, and frequently tested command for creating Cloud Storage buckets using the `gsutil` utility.
The syntax `gsutil storage buckets create` is incorrect; `gsutil` uses direct subcommands like `mb` for bucket operations.
The `gsutil` command-line tool is specifically used for managing Google Cloud Storage resources, and `gsutil mb` (make bucket) is the standard and most concise command for creating a new bucket.
The command `gcloud mb` is incorrect; `gcloud` uses structured command groups and `mb` is a subcommand specific to `gsutil`.
Concept tested: Google Cloud Storage bucket creation command
Source: https://cloud.google.com/storage/docs/gsutil/commands/mb
Topics
Community Discussion
No community discussion yet for this question.