Google Cloud Certified Associate Cloud Engineer Practice

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Google Cloud Certified Associate Cloud Engineer Exam with flashcards and multiple choice questions. Each question includes hints and explanations to help you study effectively. Get ready to pass your certification exam!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


What is the correct command to set the default Compute Engine zone with the Cloud SDK?

  1. gcloud set compute\zone us-east1

  2. gcloud config set compute/zone us-east1

  3. gcloud config set compute\zone us-east1

  4. gcloud set compute/zone us-east1

The correct answer is: gcloud config set compute\zone us-east1

The command to set the default Compute Engine zone with the Cloud SDK is "gcloud config set compute/zone <zone>" where <zone> is the desired zone. Option A is incorrect because it uses the wrong syntax (backslash instead of forward slash). Option B is incorrect because it does not follow the correct syntax for the command. Option D is incorrect because it also uses the wrong syntax.