Scenario PracticeGoogle Cloud · ACE

ACE Which Command Should the Administrator Use Practice Questions

Practise command-choice questions where the task is to identify the correct verification, configuration or troubleshooting command.

Start Scenario Practice

Common Traps on Which Command Should the Administrator Use Practice Questions

  • ·Separate verification commands from configuration commands.
  • ·Read whether the question asks to identify, verify, fix, permit or deny.
  • ·Small command keywords often change the correct answer.

Sample Questions

Practice all 15
1.

A developer has a Kubernetes Deployment manifest in a file named 'api-deployment.yaml'. Which command creates the Deployment if it doesn't exist, or updates it if it does?

Explanation: `kubectl apply -f` is idempotent — it creates the resource if absent and updates it if present. `kubectl create -f` only creates and errors if the resource already exists. `kubectl deploy` is not a valid kubectl command.

2.

A team wants to deploy a container image at 'gcr.io/myproject/api:v2' as a Cloud Run service named 'api-service' in us-east1, accessible without authentication. Which command is correct?

Explanation: The Cloud Run deploy command syntax is `gcloud run deploy [SERVICE] --image=[IMAGE] --region=[REGION]`. `--allow-unauthenticated` enables public (unauthenticated) access. `--zone` is a Compute Engine concept, not Cloud Run. `--no-auth` and `--public` are not valid flags.

3.

A team needs a GKE cluster named 'prod-cluster' in the us-central1 region with cluster autoscaling enabled, scaling between 3 and 10 nodes. Which command achieves this?

Explanation: The correct command is `gcloud container clusters create` with `--enable-autoscaling`, `--min-nodes`, and `--max-nodes`. `kubectl` creates resources within a cluster — it cannot create the cluster itself. `gcloud kubernetes` is not a valid command group.

4.

Which command creates a Cloud Storage bucket named 'my-archive-bucket' in the US multi-region using the modern gcloud CLI?

Explanation: The modern `gcloud storage buckets create` command (introduced alongside the legacy `gsutil mb`) is the current recommended approach. The URI must be prefixed with `gs://`. `--location` specifies the region or multi-region.

5.

A Cloud Function must execute automatically every time a new object is written to a specific Cloud Storage bucket. Which trigger type should be configured for the function?

Explanation: Cloud Functions (2nd gen) can be triggered by Cloud Storage events using Eventarc — specifically the `google.cloud.storage.object.v1.finalized` event. The Cloud Storage trigger (1st gen) uses the same concept. HTTP triggers require an explicit HTTP call. Pub/Sub triggers respond to messages, not storage events directly.

Related Topics

command output questionstroubleshootingconfiguration questions

Frequently asked questions

How do "Which Command Should the Administrator Use Practice Questions" appear on the real ACE?

Practise command-choice questions where the task is to identify the correct verification, configuration or troubleshooting command. These appear throughout the ACE and require you to apply your knowledge, not just recall facts.

How many scenario questions are on the ACE exam?

Cisco doesn't publish an exact breakdown, but scenario-based questions (especially exhibit and command-output formats) make up a significant portion of the ACE. Practicing each scenario type ensures you're ready for any format.

Are these ACE scenario practice questions free?

Yes — all scenario practice on Courseiva is completely free. Sign up for a free account to track your progress and see which scenario types you've mastered.

Ready to practice this scenario type?

Launch a full Which Command Should the Administrator Use Practice Questions session with instant scoring and detailed explanations.

Start Scenario Practice →