AI-900 Practice Question: Describe fundamental principles of machine learning on Azure
What is 'imbalanced classification' handling using 'SMOTE'?
⚠ Common exam trap
It's easy for candidates to confuse SMOTE with undersampling or threshold tuning, but SMOTE is specifically a synthetic oversampling technique that creates new data points, not a method for removing data or adjusting model parameters.
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
✓
Generating synthetic minority class examples by interpolating between existing examples
SMOTE (Synthetic Minority Over-sampling Technique) is a data augmentation method that creates synthetic examples for the minority class by interpolating between existing minority class instances. It selects a minority example, finds its k-nearest neighbors from the same class, and generates new samples along the line segments connecting the example to those neighbors. This balances the class distribution without duplicating existing data or discarding majority class examples.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
A technique for collecting more real minority class examples from external data sources
Why it's wrong here
Acquiring additional real examples from external data sources is a data collection strategy, not SMOTE. SMOTE requires no new data from outside: it manufactures minority-class rows from patterns already present in the training set by interpolation. The emphasis on 'real' also misses that SMOTE produces synthetic observations rather than observed ones.
- ✓
Generating synthetic minority class examples by interpolating between existing examples
Why this is correct
SMOTE creates synthetic minority-class examples by selecting a minority instance, identifying its k-nearest minority neighbors, and randomly interpolating along the line segment to one of those neighbors. This augments the feature space with plausible variations instead of duplicating identical records, which gives classifiers richer coverage of the rare class and helps ordinary algorithms learn more robust decision boundaries.
- ✗
Removing majority class examples until all classes have equal representation
Why it's wrong here
Removing majority-class rows until the classes are equally sized describes random undersampling, a fundamentally different approach to imbalance. Undersampling discards potentially informative majority cases to balance the dataset, whereas SMOTE enriches the minority side by adding new synthetic cases. SMOTE therefore expands the training set rather than shrinking it, and it never eliminates majority-class information.
- ✗
Setting model confidence thresholds to classify more examples as the minority class
Why it's wrong here
Adjusting a model's confidence threshold is a post-training decision-making step that changes which examples are classified as positive, but it cannot alter the training data. Threshold tuning raises or lowers sensitivity at inference time by trading recall for precision; SMOTE instead operates on the training set before model fitting by generating new minority-class examples, so the two techniques address imbalance at entirely different stages.
Go deeper
Related to this question
About these practice questions
One of 985 original AI-900 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 →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This AI-900 practice question is part of Courseiva's free Microsoft 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-900 exam.