Google Cloud · ACE · Tactics

How to Pass Google ACE on the First Try — 9 Tactics That Actually Work

By CertSharp Team~12 min read

Pass-on-first-try in 30 seconds

Get hands-on with GCP. Learn the gcloud CLI patterns. Hit 80% on full-length mocks twice before booking. Read every question twice, eliminate the obvious wrong answer, and pick the “more managed” option when two answers look right. Flag long questions, return at the end — never wrestle with one question past 4 minutes.

Most ACE failures are not knowledge failures. They are process failures — booking the exam too early, getting tunnel-vision on one question, mistaking AWS reflexes for Google answers, or skipping the hands-on labs that turn vocabulary into recognition. The candidates who pass on the first try are not necessarily the most knowledgeable; they are the ones who run a tighter process.

These nine tactics are pulled from the patterns we see across thousands of CertSharp ACE practice runs. None of them require extra study hours. They require deliberate study.

1. The 80% rule for booking the exam

The single best predictor of a first-try pass is hitting 80%+ on two full-length 50-question timed mocks, taken at least 48 hours apart, under real exam conditions (no notes, single timer, no breaks).

Do not book the real exam until you have hit 80% twice. This is the most reliable rule in cert prep, and it is the one candidates ignore most often. The pattern of failure goes:

  1. Candidate scores 65-72% on their first mock.
  2. “The real exam is easier than CertSharp,” they tell themselves (this is true on average, but the variance is real).
  3. They book the exam thinking they will close the gap with one more weekend.
  4. They sit the exam at 70-73% readiness and get unlucky on three Domain 3 questions.
  5. They fail by 1-3 percentage points.

The 80% threshold is a buffer against bad question draws on exam day. Some candidates can pass at 75% readiness; some need 85%. Without knowing which one you are, 80% is the safe call.

If you do not have access to a calibrated question bank, the CertSharp ACE bank includes 500 questions and a domain breakdown after each mock.

2. Hands-on every week — never theoretical only

ACE punishes book-only candidates specifically, and this is worth understanding at a mechanical level rather than as a vague warning. Several questions show gcloud output, a YAML manifest, or a console screenshot and ask what is happening, what is misconfigured, or which change is required. These questions feel obvious if you have run the command yourself and feel like a trick if you have not — because they are testing pattern recognition built from repetition, not comprehension you can get from a paragraph of prose.

Here is why this specifically trips up documentation-only candidates. A written guide might describe “GKE Autopilot bills per pod resource request,” and a candidate can repeat that sentence back correctly. But the exam question shows a kubectl describe pod output or a Deployment YAML with a resources.requests block set unrealistically low, and asks what will happen when the pod scales. Someone who has only read the definition has no reference point for what that YAML block should look like or what a resource-starved pod's events log shows; someone who has actually deployed a workload and watched it evict has seen exactly this pattern before. The same gap shows up with IAM — reading “predefined roles are scoped to a service” is very different from having actually opened the IAM & Admin console, tried to grant a role, and seen the permission picker organised by service. Candidates who skip the console entirely also tend to misjudge how the UI groups things (e.g., assuming Cloud Run and Cloud Functions live in the same console section, or not knowing where VPC firewall rules are configured relative to the VPC itself), and multi-paragraph scenario questions sometimes hinge on exactly that kind of console-navigation familiarity.

Minimum hands-on commitment for a first-try pass:

  • 30 minutes of GCP console / gcloud time per week during weeks 1-5 of study.
  • One full hands-on lab per week (deploy something end-to-end).
  • The 10 labs from the 6-week study plan, all done at least once before exam day.
  • At least one pass through each lab using the Cloud Console UI, not just the CLI — CLI-only practice leaves a gap on questions that show a console screenshot, since the button labels, menu groupings, and confirmation dialogs are visually distinct from the CLI flag names you may have memorised instead.

The fix, concretely: for each of the 12-15 core GCP services on the exam guide, do the following once: create the resource in the Console UI, then delete it and recreate it with the equivalent gcloud command, then intentionally misconfigure it once (wrong region, wrong IAM role, missing firewall rule) so you have seen what the resulting error or unexpected behaviour actually looks like. That third step — seeing a real failure — is what most book-only candidates skip entirely, and it is disproportionately what the “what is wrong with this configuration” question style is testing. You do not need to deploy production-quality workloads. You need to type the commands and click the buttons enough that the syntax and the UI go from “I would have to look it up” to “I recognise that.”

3. The 5 trap-question patterns that catch most candidates

Across the CertSharp ACE bank, five patterns recur on the real exam. Learn to spot them.

Pattern 1: GKE Autopilot vs Standard

The scenario will say “minimise cluster operations,” “reduce overhead,” or describe a small team with no Kubernetes ops experience. The trap is GKE Standard with autoscaler. The answer is almost always Autopilot. Standard is correct only when the scenario explicitly mentions DaemonSets, privileged containers, custom CNI, or node-level access.

Pattern 2: Service-account JSON keys

Any answer involving “download a service-account JSON key” is almost always wrong. Google recommends keyless patterns: Workload Identity (for GKE), service-account impersonation (for short-lived access), or attaching the SA directly (for VMs and Cloud Run). If the question is about a developer downloading a key, look for the keyless alternative.

Pattern 3: Primitive IAM roles

Primitive roles (Owner, Editor, Viewer) are almost never the right answer. They are intentionally over-broad and Google's official guidance is to use predefined roles (roles/compute.instanceAdmin, roles/storage.objectViewer, etc.) or custom roles instead. If you see a primitive role in the options, suspect a trap.

Pattern 4: Quota at the wrong level

GCP has three quota levels: project, region, and global. The exam will give a scenario like “autoscaler stopped at 20 VMs” and the answer is almost always “regional CPU quota was hit,” not project-level. Memorise: VMs and CPU cores are mostly regional quotas; storage and API requests are mostly project quotas.

Pattern 5: OS Login vs metadata SSH keys

Modern Google practice is OS Login (IAM-based SSH). When a question describes revoking a former employee's SSH access, the OS Login answer is “revoke their IAM role”; the metadata-key answer is “edit project metadata to remove the key.” If the scenario mentions OS Login (or just describes a modern project), the IAM answer is correct.

4. The “Googly answer” heuristic

When two options are both technically correct, ACE expects the more “Googly” one. The heuristic:

  • Prefer managed over self-managed. Cloud Run beats GKE beats Compute Engine, when the workload allows it.
  • Prefer serverless over server-ful. If scale-to-zero is acceptable and the workload fits the model, the serverless option is the expected answer.
  • Prefer IAM over metadata, ACLs, or custom auth. IAM is the modern Google-recommended pattern for almost every authorisation question.
  • Prefer the higher-level abstraction. Workload Identity beats service-account keys. OS Login beats metadata SSH. Spot VMs beat preemptible VMs (terminology update). Cloud SQL beats self-managed Postgres on Compute Engine.
  • Prefer regional resilience over zonal. Regional clusters, regional load balancers, regional buckets are favoured when the scenario does not explicitly justify zonal.

This heuristic breaks when the scenario explicitly constrains the answer (“the team has 3,000 nodes and needs DaemonSets” rules out Autopilot). Read the constraints carefully, but in their absence, lean Googly.

5. Time management — the 2-minute rule

50 questions in 120 minutes is 2 minutes 24 seconds average. But scenario questions can take 4 minutes and quick conceptual questions take 30 seconds. The right strategy:

  1. Pass 1 (first 80 minutes): answer every question you can in under 2 minutes. Flag anything that takes longer.
  2. Pass 2 (next 30 minutes): return to flagged questions. Spend up to 4 minutes per question.
  3. Pass 3 (last 10 minutes): review your final 10 toughest questions. Change answers only when you have specific reasoning, not because you are second-guessing.

Never spend more than 4 minutes on a single question. One question is worth 2% of your total score. Spending 8 minutes wrestling with it costs you the time to comfortably answer four easier questions later. Flag it and move on; you can come back.

6. Domain 3 cannot be below 70%

Domain 3 (Deploying and implementing a cloud solution) is 25% of the exam — the largest weight. Candidates who fail almost always have a Domain 3 score below 65%. Domains 4 + 5 combined are another 40%, so if Domain 3 drops, you also need Domains 4 and 5 to be strong to compensate.

In the final 2 weeks before the exam, weight your practice toward Domain 3. The CertSharp ACE bank lets you filter questions by domain — run 30-50 Domain 3 questions in a single sitting, then 30 Domain 4, then 30 Domain 5. Your “readiness” should be measured per domain, not on the overall mock average.

7. The last 72 hours — the taper

The 72 hours before the exam is the most-misused study time. Most candidates cram and walk in cognitively fatigued. The right shape:

  • 72 hours out: One last 50-question mock, full conditions. Read explanations carefully. Identify 3-5 specific topics you are still shaky on.
  • 48 hours out: Targeted drill — 30 questions covering only those 3-5 weak topics. No new content.
  • 24 hours out: Light review only. Re-read the ACE cheat sheet end-to-end. Get a haircut, prep your IDs, go to bed early.
  • Exam day: No new content. Light breakfast, hydration, walk for 10 minutes, log in 30 min before slot.

The night-before crammer who failed by 2 points would have passed if they had slept 8 hours instead of grinding to 1am. Cognitive performance on the exam is a function of rest as much as preparation.

8. Exam-day mechanics that fail otherwise-ready candidates

For online-proctored exams specifically — these mechanics fail more first-time candidates than knowledge gaps do:

  • Test your webcam and microphone the day before. Run the Kryterion compatibility checker. Webcam-related restarts cost 15-30 minutes.
  • Clear your desk completely. Notes flagged as visible during the room scan can void the exam.
  • Disable browser extensions and notifications. A Slack popup mid-exam can be flagged as suspicious activity.
  • Wired internet beats Wi-Fi. If you can plug in, do it. A 30-second connection blip can pause the exam and trigger a restart.
  • Use a single monitor. Multi-monitor setups are not allowed for online-proctored exams.
  • Have water nearby in a clear container. Allowed; opaque drink bottles are not.
  • Take a screenshot of your confirmation email. Some candidates have lost access to the email mid-check-in.

For test-centre exams: arrive 30 minutes early, bring 2 forms of ID with matching names, leave everything else in the locker.

9. The post-fail post-mortem (if it happens)

If you fail, do not retake the next day. The 14-day wait period is good for you, not against you. Use it correctly:

  1. Read your domain-level performance report (Google sends it after a fail). Identify the 1-2 weakest domains.
  2. Do not study other domains. If you scored 80% on Domain 1 and 50% on Domain 3, drilling Domain 1 is wasted effort.
  3. 100 fresh practice questions per weak domain. Filter the CertSharp bank by domain, do batches of 25 with full explanation review.
  4. One full-length mock 3 days before the retake. Target 80% as before. Below that, push the retake another week.

First-fail-then-pass candidates almost always succeed on the second try if they run a real post-mortem. Candidates who fail twice are almost always candidates who retook without diagnosing.

Common failure modes (besides the obvious)

  1. Studying AWS-flavoured GCP. Why this happens: engineers with AWS or Azure background pattern-match GCP services to what they already know (GCE ↔ EC2, Cloud Storage ↔ S3, VPC ↔ VPC) and unconsciously carry over the defaults, not just the concepts. “The default VPC has no internet gateway” is true on AWS but false on GCP — GCP's default network auto-creates a subnet per region and ships with permissive default firewall rules for SSH/RDP/ICMP, which is the opposite failure mode from AWS's locked-down default VPC. Similarly, AWS engineers expect IAM users and access keys as the default identity model; GCP expects service accounts and, increasingly, keyless Workload Identity. How to fix it: for every GCP service you already know an AWS equivalent for, explicitly write down one default behaviour that differs, and verify it hands-on rather than assuming it matches your AWS mental model.
  2. Confusing IAM scope levels. Why this happens: candidates read that IAM bindings can apply at organisation, folder, project, or resource level, but without having actually bound a role at each level, it is easy to default to “just grant it at project level” on every scenario question, since that is the level most tutorials demonstrate. The exam frequently tests whether you know that a resource-level binding is more specific and does not require (or benefit from) also touching the project-level policy, and that bindings at higher levels inherit downward and union together rather than override. How to fix it: in your GCP console, deliberately practise granting the same role at all four levels on a throwaway project, and use gcloud projects get-iam-policy and the equivalent folder/org commands to inspect the resulting effective policy at a resource beneath each binding.
  3. Skipping BigQuery basics. Why this happens: ACE is not a data-engineering exam, so candidates reasonably deprioritise BigQuery in favour of compute, IAM, and networking — but 3-4 questions in Domain 3 still touch dataset/table/partition fundamentals and the difference between loading data (batch from Cloud Storage, streaming inserts, BigQuery Data Transfer Service) and querying it. Candidates who skip this entirely tend to lose easy points on questions that are really just testing whether you know what a partitioned table is, not advanced query optimisation. How to fix it: spend one hour creating a BigQuery dataset, loading a CSV from Cloud Storage, and running a query against a date-partitioned table — that single hour covers the large majority of what ACE actually asks about BigQuery.
  4. Studying Professional Cloud Architect by accident. Why this happens: a lot of freely available GCP study content is written for PCA (it is the more popular, higher-profile cert) and does not clearly separate design-level content from operational content. PCA asks “which architecture should I choose and why,” often against one of its published case studies; ACE asks “how do I deploy, monitor, or configure this specific thing,” and every ACE question is self-contained with no outside case-study context required. How to fix it: if a study resource spends more time on trade-off analysis across multiple systems than on the mechanics of a single service, it is PCA-shaped content — set it aside and return to it after you pass ACE.
  5. Forgetting the “Choose two” questions. Why this happens: under time pressure, the eye catches the scenario and the options but skips the one line in the stem that says “Choose two” or “Choose three,” especially because most of the exam is single-answer and your reading pattern defaults to picking one option and moving on. Multi-select questions are scored as a single point with no partial credit — selecting one of two required answers scores zero, identically to selecting zero. How to fix it: train yourself to read the last sentence of every stem before looking at the options, and physically count your selected checkboxes against the number the stem asked for before moving to the next question.
  6. Cramming gcloud man pages. Why this happens: candidates who feel under-prepared on CLI syntax sometimes overcorrect by trying to memorise every flag for every command, which is a poor use of study time because the exam does not test obscure flags — it tests whether you recognise the verb-resource pattern (gcloud container clusters ... is about GKE, gcloud iam service-accounts ... is about service accounts) and the two or three most common flags for each. How to fix it: stop reading man pages and instead run the 30 commands in the ACE cheat sheet against a real project — muscle memory from typing beats memorisation from reading every time.

Frequently asked questions

What is the hardest domain on the Google ACE exam?

Domain 3 (Deploying and implementing a cloud solution) at 25% of the exam weight is both the largest single domain and the most CLI-heavy — this is where the majority of the command-output and YAML-interpretation questions concentrate, and it is the domain that most rewards actual hands-on practice over reading. Domain 5 (Configuring access and security) at 20% is the second most commonly failed domain, largely because IAM, service accounts, Workload Identity, and the keyless-access patterns Google now favours are conceptually dense and easy to get subtly wrong under time pressure. Candidates who fail ACE almost always have a Domain 3 score below 65% on their post-exam performance report, which is why the study plans built around this cluster front-load compute and deployment content early and revisit it heavily in the final review week rather than treating all five domains as equally weighted study time.

What is the 80% rule?

The 80% rule is the heuristic that the single best predictor of a first-try pass is scoring 80% or higher, consistently, on two separate full-length 50-question timed mocks taken under real exam conditions — no notes, one sitting, a hard 120-minute timer, at least 48 hours apart so the second attempt is not just recalling the first one's answers. Google's own effective passing threshold is estimated at roughly 70%, but that number is unofficial and the exact cut score is never published, so treating 70% as your target leaves no safety margin against a slightly unlucky question draw. CertSharp's ACE question bank is calibrated somewhat harder than the live exam specifically so that hitting 80% on CertSharp mocks translates into a comfortable margin above whatever the real, undisclosed cut score turns out to be on exam day.

How much time should I spend per question on the ACE exam?

Plan for roughly 2 minutes per question on your first pass through all 50 questions, which leaves about 20 minutes of buffer at the end specifically for revisiting anything you flagged. The math works out because 50 questions in a 120-minute exam averages to 2 minutes 24 seconds per question, but that average hides real variance — a short conceptual question might take 30 seconds while a dense, multi-paragraph scenario or a command/YAML-interpretation question can reasonably take 3-4 minutes to read and reason through carefully. The practical strategy is to bank time on the fast, obvious questions early so you have a genuine buffer for the handful of long scenario questions later, rather than spending evenly and discovering with 10 questions left that you have only 8 minutes remaining.

Should I memorise gcloud commands for ACE?

You should focus on recognising common command patterns and knowing what the major flags do, rather than memorising the complete flag set for every command — the exam does not test obscure or rarely-used flags, and time spent memorising man pages is time better spent actually running commands. The practical study approach is to pick the roughly 30 most commonly tested gcloud commands (spanning compute, container, iam, sql, storage, projects, services, config, and auth) and run each one at least once against your own free-tier GCP project, ideally once from the Cloud Console UI and once from the CLI so you recognise both forms. Recognising that a command starting with <code>gcloud container clusters</code> is about GKE, without needing to recall every possible flag, is what actually moves the needle on exam day.

Can I bring scratch paper to the Google ACE exam?

At a Kryterion test centre, staff provide a small wipeable board and marker that you must return before leaving, and you are not permitted to bring or use your own paper. For online-proctored exams, no physical scratch paper is allowed at all — your desk must be completely clear as part of the room-scan requirement — but the exam interface itself provides a digital notes area you can type into during the session. Because you cannot count on physical scratch paper in either delivery format, it is worth practising your full-length mocks the same way: doing any tracking, elimination notes, or flagging entirely inside the interface (or a simple typed note) rather than relying on a habit of jotting things down on paper, so exam day does not introduce an unfamiliar workflow on top of the time pressure.

What if I freeze on a long scenario question?

Flag it immediately and move on rather than continuing to reread it — the exam interface lets you mark any question for review and return to it later, and this single habit is the biggest lever most candidates have over their own time management. Spending 6-8 minutes wrestling with one dense scenario question is the single most common time-management failure on ACE, because that time comes directly out of the buffer you need for the rest of the exam, and one question is worth exactly the same 2% of your score whether you spend 30 seconds or 8 minutes on it. Banking time elsewhere by answering the questions you are confident about quickly, then returning to flagged questions with a clearer head in your final review pass, consistently produces better outcomes than trying to force a breakthrough on a single question in the moment.

Practise to the 80% rule

500 ACE questions calibrated above exam difficulty. Hit 80% on CertSharp twice and you are ready to book. 30 free questions, no signup. $11.99 lifetime for the full bank.