- A
Total number of records available for training.
Why wrong: Volume is a quantity, not quality.
- B
Presence of outliers that may skew the model.
Outliers can distort the model's understanding.
- C
Number of distinct labels in the outcome field.
Why wrong: This is a model design consideration, not data quality.
- D
Percentage of missing values in key fields.
High missingness can reduce model accuracy.
- E
Number of duplicate records in the dataset.
Duplicates can cause overfitting.
Quick Answer
The answer is the number of duplicate records in the dataset, along with the presence of outliers and the balance of target classes. Duplicate records artificially inflate the weight of certain data points, causing the model to learn patterns that do not generalize, while outliers can skew sensitive algorithms like linear regression or k-means clustering, leading to biased predictions. On the Salesforce AI Associate exam, this question tests your understanding of data preprocessing fundamentals, often appearing as a "select three" item where one distractor might be "total dataset size" or "file format." A common trap is overlooking duplicates because they seem harmless, but they silently distort accuracy metrics. To remember the three factors, think of the acronym DOB: Duplicates, Outliers, and Balance—if any of these are off, your model’s performance will be off too.
AI Associate Data for AI Practice Question
This AI Associate practice question tests your understanding of data for ai. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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.
Which THREE factors should be considered when evaluating the quality of a dataset for an AI model?
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
Presence of outliers that may skew the model.
Option B is correct because outliers can disproportionately influence model training, especially in algorithms like linear regression or k-means clustering, leading to biased predictions. Evaluating the presence and impact of outliers is critical for ensuring the model generalizes well to unseen data.
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.
- ✗
Total number of records available for training.
Why it's wrong here
Volume is a quantity, not quality.
- ✓
Presence of outliers that may skew the model.
Why this is correct
Outliers can distort the model's understanding.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Number of distinct labels in the outcome field.
Why it's wrong here
This is a model design consideration, not data quality.
- ✓
Percentage of missing values in key fields.
Why this is correct
High missingness can reduce model accuracy.
Related concept
Read the scenario before looking for a memorised answer.
- ✓
Number of duplicate records in the dataset.
Why this is correct
Duplicates can cause overfitting.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Salesforce often tests the misconception that dataset size (option A) is a primary quality metric, whereas the exam emphasizes that completeness, consistency, and absence of bias (e.g., missing values, duplicates, outliers) are more critical for model reliability.
Detailed technical explanation
How to think about this question
Outliers can arise from data entry errors, sensor malfunctions, or genuine rare events, and their detection often involves statistical methods like Z-score, IQR, or DBSCAN. In high-dimensional spaces, outliers may be masked by the curse of dimensionality, requiring techniques like isolation forests or robust covariance estimation. For example, in fraud detection, outliers are valuable signals, but in regression tasks, they can distort the loss function (e.g., MSE) and lead to overfitting.
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 small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.
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.
- →
Data for AI — study guide chapter
Learn the concepts, then practise the questions
- →
Data for AI practice questions
Targeted practice on this topic area only
- →
All AI Associate questions
506 questions across all exam domains
- →
Salesforce AI Associate AI Associate study guide
Full concept coverage aligned to exam objectives
- →
AI Associate practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related AI Associate practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
AI Fundamentals practice questions
Practise AI Associate questions linked to AI Fundamentals.
AI Capabilities in CRM practice questions
Practise AI Associate questions linked to AI Capabilities in CRM.
Ethical Considerations of AI practice questions
Practise AI Associate questions linked to Ethical Considerations of AI.
Data for AI practice questions
Practise AI Associate questions linked to Data for AI.
AI Associate fundamentals practice questions
Practise AI Associate questions linked to AI Associate fundamentals.
AI Associate scenario practice questions
Practise AI Associate questions linked to AI Associate scenario.
AI Associate troubleshooting practice questions
Practise AI Associate questions linked to AI Associate troubleshooting.
Practice this exam
Start a free AI Associate 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 AI Associate question test?
Data for AI — This question tests Data for AI — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Presence of outliers that may skew the model. — Option B is correct because outliers can disproportionately influence model training, especially in algorithms like linear regression or k-means clustering, leading to biased predictions. Evaluating the presence and impact of outliers is critical for ensuring the model generalizes well to unseen data.
What should I do if I get this AI Associate question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
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 →
Same concept, more angles
3 more ways 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. Data quality is critical for AI model performance. Which three data quality dimensions should be monitored? (Choose three.)
hard- ✓ A.Completeness
- ✓ B.Consistency
- C.Uniqueness
- ✓ D.Timeliness
- E.Volume
Why A: Completeness, timeliness, and consistency are fundamental data quality dimensions. Volume is not a quality dimension; uniqueness is related to consistency but not always required.
Variation 2. Which TWO data preparation steps are critical for ensuring high-quality training data?
medium- A.Increasing dataset size by adding noise.
- ✓ B.Removing duplicate records.
- C.Normalizing all features.
- ✓ D.Handling missing values appropriately.
- E.Using only labeled data.
Why B: Option B is correct because duplicate records in a dataset can cause the model to overfit to repeated patterns, biasing the learned distribution and reducing generalization. Removing duplicates ensures each data point contributes equally to training, which is essential for robust model performance.
Variation 3. A retail company has implemented a Salesforce AI lead scoring model to prioritize high-value customers. After three months, the model's AUC-ROC score is only 0.55, indicating poor performance. The data scientist reviews the training data and finds that 20% of the records are exact duplicates due to multiple data imports from different sources. The duplicates have inconsistent target labels (some labeled 'converted', others 'not converted'). What should the data scientist do to improve model performance?
easy- A.Downsample duplicates to reduce their impact but keep all records.
- B.Use the duplicates as a separate class to indicate noisy data.
- ✓ C.Remove all duplicate records and keep only one instance per duplicate group, resolving label conflicts by majority vote.
- D.Keep all duplicates because they represent multiple interactions; increase model complexity to handle them.
Why C: Duplicate records with conflicting labels confuse the model. Removing duplicates and resolving label conflicts (e.g., by majority vote) is the most effective step to clean the data and improve performance.
Last reviewed: Jun 30, 2026
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.
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.
Sign in to join the discussion.