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.


You need to create a new development Kubernetes cluster with 4 nodes. The cluster will be named linux-academy-dev-cluster. Which of the following truncated commands will create a cluster?

  1. A. gcloud container clusters create linux-academy-dev-cluster --num-nodes 4

  2. B. kubectl clusters create linux-academy-dev-cluster 4

  3. C. kubectl clusters create linux-academy-dev-cluster --num-nodes 4

  4. D. gcloud container clusters create linux-academy-dev-cluster 4

The correct answer is: A. gcloud container clusters create linux-academy-dev-cluster --num-nodes 4

Option B is incorrect because the command is using the wrong tool, kubectl can not be used to create clusters. Option C is incorrect because it is missing the command for creating a cluster, it should be "gcloud container clusters create". Option D is incorrect because it is missing the flag "--num-nodes" to specify the number of nodes to create for the cluster, which is required in this case.