8 real PMLE flashcards, sampled across every domain the exam tests. Each concept card is paired with the misconception card built from the tempting wrong answer - the trap most decks skip. No account, no card.
The full deck has 920 flashcards. 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.
errorMisconceptionScaling Prototypes Into ML Models
For nightly univariate forecasts, why not train one deep neural network across all series and serve batch predictions via a managed endpoint?
arrow_downward
A DNN adds Python and serving overhead a SQL-only team cannot maintain, and a single shared network ignores the per-series univariate structure that ARIMA captures directly. BigQuery ML ARIMA keeps the work in SQL and the results in the warehouse instead.
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.
errorMisconceptionServing and Scaling Models
To remove cold-start timeouts on a spiky endpoint, just set minReplicaCount equal to peak so replicas are always provisioned.
arrow_downward
Pinning the floor to peak does eliminate cold starts, but it keeps every peak replica running through idle periods, so you pay full peak cost overnight. A small warm floor plus a high ceiling and an earlier scale-out trigger absorbs the spike without holding peak capacity when traffic is near zero.
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.
errorMisconceptionAutomating and Orchestrating ML Pipelines
Retraining every night guarantees the model is always fresh, so nightly scheduling is the safest policy.
arrow_downward
Nightly scheduling sounds safer because data is fresh, but it retrains even when performance is stable, wasting compute on needless runs. When degradation is unpredictable, a performance or drift threshold fires only on genuine decay, which conserves compute without sacrificing freshness.
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.
errorMisconceptionCollaborating Within and Across Teams to Manage Data and Models
For a one-off terabyte-scale Parquet backfill, I should provision a Dataproc Spark cluster and write the joins in Spark SQL.
arrow_downward
Spark on Dataproc can express the same logic, but it forces you to size, run, and tear down a cluster. That contradicts a stated wish to avoid maintaining infrastructure for a one-off job. A serverless SQL engine like BigQuery handles the same scale with no cluster lifecycle to manage.
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.