Medium1 markMultiple Choice
GCP ACE · Question 09 · Domain 1.3: Installing and configuring the CLI
You are trying to create a Cloud Storage bucket using the command line, but you cannot remember the exact syntax or flags required for the gsutil mb command.
What is the FASTEST way to view the detailed documentation and examples for this specific command directly in your terminal?
You are trying to create a Cloud Storage bucket using the command line, but you cannot remember the exact syntax or flags required for the gsutil mb command.
What is the FASTEST way to view the detailed documentation and examples for this specific command directly in your terminal?
Answer options:
A.
Run: gcloud help gsutil mb
B.
Run: gsutil mb --docs
C.
Run: gsutil help mb
D.
Run: man gsutil-mb
How to approach this question
Recall how to access built-in help for gsutil.
Full Answer
C.Run: gsutil help mb✓ Correct
Run: gsutil help mb
For `gsutil`, you can access detailed documentation, flags, and examples for any command by running `gsutil help [COMMAND]`. For the make bucket command, it is `gsutil help mb`.
Common mistakes
Using `gcloud help` for `gsutil` commands.
Practice the full GCP Associate Cloud Engineer Practice Exam 4
50 questions · hints · full answers · grading
More questions from this exam
Q01You have recently joined a new team and need to set up a new Google Cloud project for a developme...EasyQ02Your company uses Google Workspace. You need to grant a new developer, Alice, the ability to view...MediumQ03You have created a new GCP project and want to deploy a Compute Engine instance. However, when yo...MediumQ04Your startup has a strict monthly cloud budget of $500. You want to be notified via email when yo...EasyQ05Your finance team wants to analyze Google Cloud costs using standard SQL and build custom dashboa...Medium
Expert