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 our comprehensive quiz. Engage with interactive flashcards and multiple choice questions that offer hints and detailed explanations to solidify your understanding. Get ready to excel!

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.


The command to create a Deployment Manager deployment.

  1. `gcloud deploy create`

  2. `gcloud deployment create`

  3. `gcloud deploy manager create`

  4. `gcloud deployment-manager deployments create`

The correct answer is: `gcloud deployment-manager deployments create`

The command to create a Deployment Manager deployment is `gcloud deployment-manager deployments create`. Option A (`gcloud deploy create`) is incorrect as the correct command for deploying can be achieved with `gcloud deploy`; adding `create` at the end will generate an error. Option B (`gcloud deployment create`) is incorrect as it is missing the keyword `manager`, which is necessary for the Deployment Manager command to work. Option C (`gcloud deploy manager create`) is incorrect as it is missing the keyword `-deployment`, which specifies that the command is for creating a new deployment. Therefore, the only correct option is option D (`gcloud deployment-manager deployments create`).