8 real PMLE flashcards, sampled from 4 of the 6 domains the exam tests, heaviest first. Where a tempting wrong answer encodes a belief people genuinely hold, the card corrects it too - the trap most decks skip. No account, no card.
The full deck has 271 flashcards, and a free account opens 40 of them across every domain. For a domain-by-domain breakdown and a study plan, read the PMLE study guide.
schoolConceptScaling Prototypes Into ML Models
What model and Google Cloud product fit nightly univariate forecasts for thousands of series owned by a SQL-only team?
arrow_downward
ARIMA models univariate temporal autocorrelation directly, and BigQuery ML lets a SQL-fluent team train and forecast many per-entity series in-place at low cost. Results stay in BigQuery, so dashboards read them without any Python serving pipeline or data movement.
schoolConceptScaling Prototypes Into ML Models
Which approach gives high accuracy, low build effort, and faithful per-decision feature attributions on structured data?
arrow_downward
AutoML tabular automates model selection and tuning for strong accuracy with little coding, and its built-in feature attributions quantify how much each input moved an individual prediction. That measurable per-decision contribution is what regulated interpretability demands.
Common misconceptionThat an LLM's fluent explanation counts as a genuine feature attribution. A generated narrative can state reasons the scoring model never actually used.
schoolConceptServing and Scaling Models
Why does a GPU-backed endpoint fail to scale out when GPUs are saturated but the default autoscaling signal tracks CPU?
arrow_downward
An autoscaler only adds replicas when its chosen metric crosses the target. GPU inference is bound by GPU duty cycle, not CPU, so on a GPU-bound workload the CPU stays low and the CPU-based trigger never fires even as p99 latency climbs. Switching the scaling signal to the GPU duty-cycle metric ties scale-out to the resource that actually saturates.
schoolConceptServing and Scaling Models
How do you tune Vertex AI endpoint autoscaling to absorb a sharp morning spike without paying for idle replicas overnight?
arrow_downward
Keep a small minReplicaCount above zero so a few warm replicas answer the first burst with no cold-start delay, raise maxReplicaCount well above peak so the endpoint can scale out for the spike, and lower the target utilisation so the autoscaler adds replicas before the request queue saturates. Together these cover the spike economically without holding peak capacity through the quiet hours.
Common misconceptionThat adding client-side retries fixes request timeouts. Retries provision no extra capacity and can add load during an already-saturating scale-out.
schoolConceptAutomating and Orchestrating ML Pipelines
What mechanism automatically starts a Cloud Build pipeline when code is merged to a Git branch?
arrow_downward
A Cloud Build trigger bound to the repository branch. It subscribes to repository push and merge events on the chosen branch and invokes the build configuration automatically, with no manual step. This removes the latency and missed-step risk of polling or hand-run commands.
schoolConceptAutomating and Orchestrating ML Pipelines
When model decay arrives unpredictably rather than on a calendar, what should trigger retraining?
arrow_downward
Tie retraining to a monitored signal: fire it when prediction performance or input drift crosses a defined threshold. Because unpredictable concept drift cannot be anticipated by a clock, a threshold trigger fires exactly when the model genuinely degrades, conserving compute while keeping the model fresh only when accuracy actually falls.
Common misconceptionThat retraining every night guarantees a fresh model. It burns compute on runs where nothing has actually degraded.
schoolConceptCollaborating Within and Across Teams to Manage Data and Models
What engine fits a one-off, multi-terabyte join and window-aggregation backfill over Parquet in Cloud Storage when the team wants standard SQL and no clusters?
arrow_downward
BigQuery. It is a serverless analytics engine that scales terabyte joins and window functions automatically, reads Parquet through external tables, and needs no provisioned cluster. Loading the Parquet as an external table lets a single SQL query join it against an existing dimension table, satisfying scale, SQL, and no-infrastructure constraints together.
schoolConceptCollaborating Within and Across Teams to Manage Data and Models
How can free-form generative outputs be scored automatically for relevance and faithfulness when single-label accuracy does not apply?
arrow_downward
Use an LLM-as-a-judge to score each output against defined qualitative criteria such as relevance and faithfulness. Generative text has many acceptable forms and no single ground-truth label, so label-based metrics cannot capture quality. An LLM judge gives repeatable, automated ratings that scale across a dataset.
Common misconceptionThat a lower training perplexity proves generated summaries are relevant and faithful. Perplexity measures token-prediction fit, not whether the output stays on topic or true to the source.
Examworthy is not affiliated with or endorsed by Google Cloud. All flashcards are original, drawn from our own blueprint-aligned practice questions. We never reproduce live exam items. PMLE and related marks belong to their respective owners.