Knowledge check
Knowledge check
Evaluate your understanding of this unit by completing the knowledge check below.

Action item: Knowledge check
Work through each question. Correct answers and feedback mirror the Multiverse assessment.
- A. You used too small a test set.
- B. The training set size is too large compared to the test set.
- C. You likely performed feature scaling or encoding before splitting the data.
- D. You didn’t shuffle the data before splitting.
The best choice is (C): You likely performed feature scaling or encoding before splitting the data.
- A. Hold-out validation
- B. Bootstrapping
- C. K-fold cross-validation
- D. Temporal validation
The best choice is (C): K-fold cross-validation
- A. Random K-fold cross-validation.
- B. Time-series cross-validation (rolling origin).
- C. Stratified sampling.
- D. Nested cross-validation.
The best choice is (B): Time-series cross-validation (rolling origin).
- A. Splitting data before preprocessing.
- B. Using automated ML pipelines to isolate transformations.
- C. Keeping test data isolated throughout model development.
- D. Randomly mixing test data back into training for larger sample sizes.
The best choice is (D): Randomly mixing test data back into training for larger sample sizes.
- A. The model will overfit the minority class.
- B. The model will ignore the majority class.
- C. The model will predict mostly the majority class and achieve misleadingly high accuracy.
- D. The dataset will become too large to process efficiently.
The best choice is (C): The model will predict mostly the majority class and achieve misleadingly high accuracy.
- A. Undersampling the majority class.
- B. Oversampling the minority class using SMOTE.
- C. Randomly duplicating the minority class.
- D. Removing noisy instances from the minority class.
The best choice is (B): Oversampling the minority class using SMOTE.
- A. Precision-recall or F1-score.
- B. Accuracy
- C. R-squared
- D. Log-loss.
The best choice is (A): Precision-recall or F1-score.
- A. Immediately delete all incomplete rows.
- B. Perform a data audit to assess the extent and pattern of missing or duplicate data.
- C. Impute missing values with random numbers.
- D. Continue model training since missing data is often insignificant.
The best choice is (B): Perform a data audit to assess the extent and pattern of missing or duplicate data.
- A. The model lacks hyperparameter tuning.
- B. Data leakage between training and validation sets.
- C. Improper class balancing technique.
- D. Poor data validation and cleaning before model training.
The best choice is (B): Data leakage between training and validation sets.
- A. Random train-test split, accuracy as the main metric, and oversampling the majority class.
- B. Single hold-out validation, precision as the main metric, and no data cleaning.
- C. K-fold cross-validation, SMOTE for minority class balancing, and imputation for missing data.
- D. Stratified sampling, undersampling the minority class, and feature scaling before splitting.
The best choice is (C): K-fold cross-validation, SMOTE for minority class balancing, and imputation for missing data.