Google Cloud free flashcards

Free PMLE flashcards

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.

ConceptScaling Prototypes Into ML Models

What model and Google Cloud product fit nightly univariate forecasts for thousands of series owned by a SQL-only team?

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.

MisconceptionScaling 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?

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.

ConceptServing and Scaling Models

How do you tune Vertex AI endpoint autoscaling to absorb a sharp morning spike without paying for idle replicas overnight?

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.

MisconceptionServing and Scaling Models

To remove cold-start timeouts on a spiky endpoint, just set minReplicaCount equal to peak so replicas are always provisioned.

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.

ConceptAutomating and Orchestrating ML Pipelines

When model decay arrives unpredictably rather than on a calendar, what should trigger retraining?

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.

MisconceptionAutomating and Orchestrating ML Pipelines

Retraining every night guarantees the model is always fresh, so nightly scheduling is the safest policy.

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.

ConceptCollaborating 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?

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.

MisconceptionCollaborating 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.

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.

Get all 920 PMLE flashcards free

Drop your email and we will keep you posted as new PMLE study material ships. No spam - we mail you only when it is worth your time.

Frequently asked questions

Are these PMLE flashcards free?

Yes. Every card on this page is free to read with no sign-up. The full deck has 920 flashcards; drop your email below and we will keep you posted, or create a free account to study the rest.

What is a misconception card?

A card built from a tempting wrong answer in our question bank, naming the trap and explaining why it fails. Most flashcard decks only drill the fact (a concept card); we pair each one with the misconception the exam actually tests you against.

Are these real PMLE exam questions or vendor content?

No. These are original flashcards written from our own blueprint-aligned practice questions. We never reproduce live exam items or vendor material.

How many flashcards are in the full PMLE deck?

920 cards spread across all 6 domains. For the full domain-by-domain breakdown, read the study guide.

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.