Courseiva
Data for AImediumMultiple ChoiceObjective-mapped

Handling Missing Values in AI Model Training

A data scientist notices that the model accuracy drops significantly after retraining with new data. Upon inspection, they find that many records have missing values for a key feature. Which data quality improvement should be prioritized first?

Quick Answer

Implementing imputation for the missing feature values is the right first move because the scenario has already isolated the cause of the accuracy drop: a key feature with a lot of missing data, introduced through retraining. Missing values are not just gaps; they act as noise that confuses the model during training, since it either has to drop those records, guess implicitly, or misweight the pattern the feature was supposed to capture, and any of those outcomes degrades accuracy. Imputation addresses this directly by filling those gaps with reasonable estimated values, which preserves both the size of the training dataset and the presence of that feature, letting the model keep learning from complete, usable records instead of throwing away data or working around the hole. This is why it has to come before other quality steps like normalization or feature reduction: those techniques operate on the values a feature already has, and applying them to a feature that is still full of missing data just means refining a broken input rather than fixing it. The general pattern worth remembering is that when a scenario names missing data as the specific, identified problem behind a performance drop, the correct fix is almost always to address that missing data directly before considering broader model or feature adjustments.

⚠ Common exam trap

Salesforce often tests the misconception that data quality improvements like normalization or feature reduction are universal fixes, when in fact the most urgent step is always to handle missing data, as it directly undermines model training and inference.

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

Implement imputation for missing feature values.

The core issue is that missing values in a key feature introduce noise and bias, directly degrading model performance. Imputation (option A) is the most direct and impactful first step because it preserves the dataset size and feature set, allowing the model to learn from complete patterns. Without addressing missing data first, other quality improvements like normalization or feature reduction would be applied to corrupted data, failing to resolve the root cause.

Answer analysis

Option-by-option breakdown

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

  • Implement imputation for missing feature values.

    Why this is correct

    Imputation addresses missing data, a common cause of accuracy drop.

  • Normalize the feature range.

    Why it's wrong here

    Normalization helps scaling but not missing values.

  • Reduce the number of features.

    Why it's wrong here

    Reducing features may discard valuable information.

  • Remove duplicate records.

    Why it's wrong here

    Duplicates are not the primary issue; missing values are.

Visual reference

Client Recursive Resolver Root DNS (13 root servers) TLD DNS (.com, .org, …) Authoritative example.com query IP addr answer

About these practice questions

One of 753 original AI Associate practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not 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 way this is tested on AI Associate

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. A retail company uses Einstein Next Best Action with customer data from Data Cloud. The recommendations are not personalized. The admin checks the data quality dashboard and finds that the 'Customer_Profile' object has 40% records with missing 'PreferredChannel' field. What is the best course of action?

hard
  • A.Remove the field from the model.
  • B.Impute the missing values using the mode of the field.
  • C.Increase the data refresh frequency.
  • D.Train the model with only records that have non-null PreferredChannel.

Why B: Imputing missing values using the mode (most frequent value) of the 'PreferredChannel' field is a standard data preprocessing technique that preserves the dataset size and statistical distribution. In Einstein Next Best Action, missing categorical data can degrade model personalization, and mode imputation is a simple, effective way to handle this without losing records or altering the model structure.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This AI Associate practice question is part of Courseiva's free Salesforce 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 AI Associate exam.