Questions: ROC Curves and AUC Metrics

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A fraud detection model achieves 99.9% accuracy on a dataset where only 0.1% of transactions are fraudulent. What does this tell us about the model's AUC?

AThe model's AUC must be close to 1.0, since high accuracy implies strong discrimination
BWe cannot determine the AUC from accuracy alone — a model that predicts 'not fraud' for every transaction achieves 99.9% accuracy but has AUC of 0.5
CThe model's AUC is guaranteed to exceed 0.5, since it outperforms a random baseline
DAUC and accuracy always agree on imbalanced datasets
Question 2 Multiple Choice

A classifier achieves AUC = 0.85. Which interpretation is correct?

AThe model correctly classifies 85% of examples regardless of threshold
BIf you randomly pick one positive and one negative example, the model assigns a higher score to the positive one 85% of the time
CThe model achieves 85% sensitivity at the threshold that maximizes accuracy
DThe model achieves 85% precision across all thresholds
Question 3 True / False

An ROC curve is constructed by varying the classification threshold and recording how the true positive rate and false positive rate change at each threshold.

TTrue
FFalse
Question 4 True / False

A model with AUC = 0.75 will achieve higher accuracy at nearly every possible threshold than a model with AUC = 0.65.

TTrue
FFalse
Question 5 Short Answer

Why is AUC more informative than accuracy when evaluating a classifier on an imbalanced dataset? What does each metric actually measure?

Think about your answer, then reveal below.