Question 185 of 500
AI Implementation and OperationshardMultiple ChoiceObjective-mapped

Quick Answer

The correct first step is to update the data preprocessing pipeline to handle missing features and add the new feature. This is because when handling data schema drift in ML pipelines, the immediate priority is pipeline stability—the preprocessing layer must gracefully accommodate structural changes like a missing 'age_group' field (via imputation or dropping) and a new 'customer_segment' column before any model retraining or rollback occurs. On the CompTIA AI+ AI0-001 exam, this scenario tests your understanding of the operational response to schema drift, a common cause of sudden performance degradation in batch prediction systems. A frequent trap is jumping to retrain the model or roll back the deployment, but the exam emphasizes that the preprocessing step must be fixed first to prevent inference errors. Memory tip: "Preprocess first, retrain second"—always stabilize the data flow before touching the model.

AI0-001 AI Implementation and Operations Practice Question

This AI0-001 practice question tests your understanding of ai implementation and operations. Examine the command output carefully: the correct answer depends on what the output actually shows, not on general recall alone. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

An organization uses a batch prediction pipeline that processes daily customer data to generate marketing recommendations. One month after deployment, the model's performance degrades significantly. The data pipeline logs show that the input data schema has changed — a new categorical feature 'customer_segment' has been added, and the existing feature 'age_group' is now missing. Which step should the operations team take first?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "first"

    Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

Question 1hardmultiple choice
Full question →

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

Update the data preprocessing pipeline to handle missing features and add the new feature

Option B is correct because the immediate priority is to ensure the data preprocessing pipeline can handle the schema change without breaking. The pipeline must gracefully handle the missing 'age_group' feature (e.g., by imputing or dropping it) and incorporate the new 'customer_segment' feature before any model retraining or rollback. This prevents data drift from causing inference errors and maintains pipeline stability.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

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

  • Retrain the model using the new schema and redeploy

    Why it's wrong here

    Retraining requires a clean dataset; the pipeline must first be fixed to handle the schema.

  • Update the data preprocessing pipeline to handle missing features and add the new feature

    Why this is correct

    This adapts the pipeline to the new schema, enabling proper feeding to the model.

    Clue confirmation

    The clue word "first" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Revert to the previous week's model version that was performing well

    Why it's wrong here

    The previous model also expects the old schema; it will fail on new data.

  • Contact the data engineering team to revert the schema change

    Why it's wrong here

    This is not a direct solution and may not be feasible; the operations team can fix preprocessing.

Common exam traps

Common exam trap: answer the scenario, not the keyword

CompTIA often tests the misconception that retraining the model (Option A) is the first step to fix performance degradation, but the trap here is that the root cause is a schema mismatch in the preprocessing layer, not the model weights.

Detailed technical explanation

How to think about this question

In production ML pipelines, schema validation and feature engineering are typically handled by a preprocessing layer (e.g., using Apache Beam, TensorFlow Transform, or custom Python scripts). When a schema change occurs, the pipeline should log the drift, apply a transformation graph that maps new features to expected inputs (e.g., one-hot encoding for 'customer_segment'), and handle missing features via default values or imputation. This approach aligns with MLOps best practices for data versioning and pipeline robustness, preventing silent failures that degrade model performance.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the AI0-001 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related AI0-001 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free AI0-001 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this AI0-001 question test?

AI Implementation and Operations — This question tests AI Implementation and Operations — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Update the data preprocessing pipeline to handle missing features and add the new feature — Option B is correct because the immediate priority is to ensure the data preprocessing pipeline can handle the schema change without breaking. The pipeline must gracefully handle the missing 'age_group' feature (e.g., by imputing or dropping it) and incorporate the new 'customer_segment' feature before any model retraining or rollback. This prevents data drift from causing inference errors and maintains pipeline stability.

What should I do if I get this AI0-001 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on AI0-001

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Refer to the exhibit. A batch inference job fails with the given logs. What is the most likely root cause of the failure?

hard
  • A.The input data has values that exceed the model's expected range
  • B.The input data contains missing values that are not handled in preprocessing
  • C.The model was not trained to handle categorical features
  • D.The model version is outdated and incompatible with the current preprocessing pipeline

Why B: The logs indicate a 'ValueError' or similar exception when the batch inference job attempts to process the input data. This error typically arises when the preprocessing pipeline encounters missing values (e.g., NaN or None) that it cannot handle, causing the job to fail. Option B is correct because missing values not handled in preprocessing are a common root cause for such failures, especially when the training data had no missing values but the inference data does.

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This AI0-001 practice question is part of Courseiva's free CompTIA 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 AI0-001 exam.