Courseiva
mediumMultiple ChoiceObjective-mapped

PDE Practice Question: A company uses BigQuery ML to create a…

A company uses BigQuery ML to create a classification model. The model is used for batch prediction on a weekly basis. After six months, the data distribution shifts, and model accuracy drops. Which approach should the company take to maintain model performance?

⚠ Common exam trap

Google Cloud often tests the misconception that hyperparameter tuning or feature engineering alone can fix data drift, when in fact only retraining on fresh data addresses the shift.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Schedule automatic retraining of the model using the most recent three months of data.

The model's accuracy drop is due to data distribution shift (concept drift). Scheduling automatic retraining using the most recent three months of data ensures the model adapts to the new patterns without manual intervention. BigQuery ML supports scheduled queries and automatic model retraining via the `CREATE OR REPLACE MODEL` statement, making this approach both practical and aligned with MLOps best practices for batch prediction pipelines.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Use Cloud Dataflow to preprocess the data and then update the model with new features.

    Why it's wrong here

    Preprocessing doesn't directly address model drift.

  • Perform hyperparameter tuning on the original training data.

    Why it's wrong here

    Tuning on old data won't fix distribution shift.

  • Apply model quantization to reduce model size and improve inference speed.

    Why it's wrong here

    This improves latency, not accuracy under drift.

  • Schedule automatic retraining of the model using the most recent three months of data.

    Why this is correct

    Retraining on recent data adapts to distribution shift.

About these practice questions

This PDE question is part of Courseiva's 890-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PDE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PDE exam.