You Can Pass This Exam For Free
Choose Your Study Path
You have general programming experience but limited ML or Google Cloud knowledge. You need to build foundational skills in both areas.
Exam Overview
Format
50-60 questions, 120 minutes. Multiple choice and multiple select questions.
Scoring
Pass/fail only — Google does not disclose numeric scores. The 70% threshold shown is a widely cited community estimate. No penalty for wrong answers.
Domains & Weights
- Architecting Low-Code AI Solutions13%
- Collaborating Within and Across Teams to Manage Data and Models14%
- Scaling Prototypes into ML Models18%
- Serving and Scaling Models20%
- Automating and Orchestrating ML Pipelines22%
- Monitoring AI Solutions13%
Registration
$200 USD. Available online-proctored (remote) or at Kryterion testing centers. Exam fee is $200 USD plus applicable taxes.
Topic Priority Table
Not all topics are tested equally. Focus your study time on Tier 1 first, then Tier 2. Tier 3 topics rarely appear — just recognize what they do.
Architecting Low-Code AI Solutions
This domain covers building ML solutions with minimal custom code using BigQuery ML, AutoML, pre-built ML APIs, and Model Garden. You need to know when each approach is appropriate, which BigQuery ML model types to select for different business problems, and how to leverage RAG patterns with Vertex AI Agent Builder for generative AI applications.
Key Topics
Must-Know Concepts
- BigQuery ML model types: linear regression, logistic regression (binary/multiclass), K-means clustering, matrix factorization (recommendations), boosted trees (XGBoost), DNN, ARIMA (time series), and autoencoders — know which to use for each problem type
- Decision criteria for choosing BigQuery ML vs AutoML vs custom training: data location, team expertise, model complexity, and time-to-production
- Pre-built ML APIs (Vision, Natural Language, Translation, Speech-to-Text, Video Intelligence) require zero training data and work out of the box for common use cases
- Model Garden provides access to foundation models (Gemini, PaLM, open-source models) for fine-tuning or direct deployment
- RAG (Retrieval-Augmented Generation) patterns using Vertex AI Agent Builder to ground model responses with enterprise data
- When to use low-code solutions vs custom training: low-code for standard problems and fast time-to-production, custom for specialized requirements
Common Exam Traps
Collaborating Within and Across Teams to Manage Data and Models
This domain covers how ML engineers work with data engineers, data scientists, and application developers to manage data and models. Key topics include data exploration and processing, prototyping in notebooks, experiment tracking, feature engineering, and model governance including versioning, access control, and data quality.
Key Topics
Must-Know Concepts
- Vertex AI Workbench provides managed Jupyter notebooks for prototyping and collaboration. Know notebook instance types and when to use managed vs user-managed instances
- Vertex AI Experiments tracks and compares ML experiments including metrics, parameters, and artifacts across training runs
- Vertex AI Feature Store enables feature sharing across teams, prevents training-serving skew with consistent feature computation, and supports point-in-time lookups
- Data exploration at scale using BigQuery for SQL-based analysis and Vertex AI Workbench for interactive exploration
- Model governance: versioning with Model Registry, access control with IAM, lineage tracking, and metadata management
- Data quality and integrity: validation, schema enforcement, anomaly detection in data pipelines, and handling data drift
- Cross-team collaboration patterns: sharing notebooks, features, models, and datasets across organizational boundaries
Common Exam Traps
Scaling Prototypes into ML Models
This domain covers taking ML prototypes from notebooks to production-grade models. Key topics include choosing frameworks and model architectures, training at scale with distributed training on GPUs and TPUs, hyperparameter optimization, transfer learning, handling overfitting and underfitting, and model evaluation and explainability.
Key Topics
Must-Know Concepts
- Choosing ML frameworks: TensorFlow for production-ready models with TFX ecosystem, PyTorch for research flexibility, scikit-learn for classical ML, XGBoost for tabular data
- Distributed training strategies: data parallelism (split data across workers), model parallelism (split model across devices), and when to use each
- GPU vs TPU selection: GPUs for general deep learning and PyTorch, TPUs for large-scale TensorFlow/JAX workloads requiring maximum throughput
- Hyperparameter tuning with Vertex AI Vizier: defining search spaces, optimization objectives, early stopping criteria, and parallel trial configuration
- Transfer learning: using pre-trained models and fine-tuning on domain-specific data to reduce training time and data requirements
- Model evaluation metrics: accuracy, precision, recall, F1, AUC-ROC for classification; RMSE, MAE, R-squared for regression; confusion matrices
- Overfitting prevention: regularization (L1, L2, dropout), cross-validation, early stopping, data augmentation, and reducing model complexity
- Model explainability: feature attribution methods (Shapley values, XRAI, integrated gradients) for understanding model predictions
Common Exam Traps
Serving and Scaling Models
The second-heaviest domain at 20%. Covers deploying models for online and batch prediction, configuring autoscaling, managing traffic between model versions, optimizing inference latency and cost, and choosing appropriate serving infrastructure. You must know when to use online vs batch prediction and how to handle scaling challenges.
Key Topics
Must-Know Concepts
- Online prediction via Vertex AI Endpoints: real-time, low-latency inference with autoscaling, load balancing, and traffic splitting between model versions
- Batch prediction: high-throughput scoring of large datasets without latency requirements, using Vertex AI batch prediction jobs
- Traffic splitting for A/B testing and canary deployments: gradually shifting traffic from an old model version to a new one
- Autoscaling configuration: minimum/maximum replicas, target CPU utilization, and scaling policies. Know that autoscaling is reactive and may not handle sudden traffic spikes
- Model optimization for serving: quantization (reducing precision), pruning (removing unnecessary weights), distillation (training smaller models to mimic larger ones)
- Serving infrastructure choices: Vertex AI Endpoints (managed), Cloud Run (containerized), GKE (Kubernetes) — know when each is appropriate
- Model versioning and rollback: deploying new model versions alongside existing ones and rolling back if performance degrades
- Cost optimization: choosing appropriate machine types, using preemptible/spot VMs for batch prediction, and right-sizing endpoints
Common Exam Traps
Automating and Orchestrating ML Pipelines
The heaviest domain at 22%. Covers designing and implementing end-to-end ML pipelines using Vertex AI Pipelines and Kubeflow, CI/CD for ML, pipeline component design, trigger-based automation, artifact management, metadata tracking, and A/B testing in production. Master this domain or you will not pass.
Key Topics
Must-Know Concepts
- Vertex AI Pipelines design: component identification, parameter configuration, trigger setup (scheduled, event-driven, data-driven), and compute selection
- Kubeflow Pipelines SDK: building pipeline components, passing artifacts between components, and defining pipeline DAGs
- Pipeline component decoupling: each component should be independently testable, reusable, and containerized with Cloud Build
- CI/CD for ML: automated testing of pipeline components, model validation gates, staged deployments, and integration with Cloud Build
- A/B testing and canary deployments in ML: traffic splitting, champion/challenger patterns, and automated rollback based on performance metrics
- Artifact management: storing and versioning training data, model binaries, evaluation metrics, and pipeline outputs in Artifact Registry and Cloud Storage
- Metadata and lineage tracking: recording experiment parameters, data versions, model versions, and pipeline execution history
- Automated retraining triggers: scheduling, data drift detection, performance degradation thresholds, and new data arrival events
Common Exam Traps
Monitoring AI Solutions
This domain covers monitoring deployed ML models for performance degradation, data drift, prediction skew, and bias. Also includes troubleshooting production ML systems, optimizing model performance, establishing retraining policies, and implementing responsible AI practices for fairness and explainability.
Key Topics
Must-Know Concepts
- Vertex AI Model Monitoring: detecting data drift (training vs serving data distribution changes), prediction drift, and feature attribution drift
- Types of drift: data drift (input distribution changes), concept drift (relationship between input and output changes), and prediction drift (model output distribution changes)
- Continuous evaluation: comparing model predictions against ground truth labels as they become available to track accuracy over time
- Feature attribution methods: Shapley values, XRAI, and integrated gradients — know when to use each for model explainability
- When to retrain: data drift exceeds threshold, model accuracy degrades below acceptable level, new data sources become available, or business requirements change
- Responsible AI: fairness metrics (demographic parity, equalized odds), bias detection in training data and model outputs, and mitigation strategies
- Troubleshooting production ML systems: IAM permission issues, resource quota limits, training failures, serving errors, and performance bottlenecks
- Logging strategies: what to log (predictions, input features, latency, errors), log sanitization (removing PII), and log analysis for debugging
Common Exam Traps
Services and Concepts You Must Not Confuse
These pairs appear on nearly every exam. Learn the difference and you'll avoid the most common traps.
Top Mistakes to Avoid
Exam-Ready Checklist
Recommended Resources
Free & Official Resources
Paid Courses & Practice Exams
These are recommended if you prefer a structured learning path. They can save time but are not required to pass.