nerdexam
Google

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.

Submitted by joshua94· Mar 30, 2026Deploying and implementing a cloud solution

Question

Which of the following command is used to create buckets in Cloud Storage?

Options

  • Agcloud storage buckets create
  • Bgsutil storage buckets create
  • Cgsutil mb
  • Dgcloud mb

How the community answered

(14 responses)
  • C
    93% (13)
  • D
    7% (1)

Why each option

This question asks for the correct command to create a new bucket in Google Cloud Storage.

Agcloud storage buckets create

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.

Bgsutil storage buckets create

The syntax `gsutil storage buckets create` is incorrect; `gsutil` uses direct subcommands like `mb` for bucket operations.

Cgsutil mbCorrect

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.

Dgcloud mb

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

#gsutil#Cloud Storage#bucket creation#CLI commands

Community Discussion

No community discussion yet for this question.

Full ASSOCIATE-CLOUD-ENGINEER Practice