Questions: Decision Boundaries in Classification

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A dataset contains two classes arranged as concentric circles — class A is the inner circle, class B is the outer ring. A logistic regression model is trained on this data. What will happen?

ALogistic regression will find the correct circular boundary because it optimizes over all possible boundaries
BLogistic regression will perfectly separate the classes once given enough training data
CLogistic regression will fail to perfectly classify the data no matter how much training data is provided, because its boundary is constrained to be a straight line
DLogistic regression will overfit and produce a jagged circular boundary around each class
Question 2 Multiple Choice

A k-nearest-neighbors classifier trained on a small, noisy dataset produces a highly irregular decision boundary with many small islands around individual points. A second model on the same data produces a single smooth curved boundary. Which model is more likely to generalize better to new data, and why?

AThe irregular k-NN boundary, because it captures all the structure in the training data
BThe smooth boundary, because complex boundaries tend to overfit noise rather than capture true class structure
CThey will generalize equally well, because both models saw the same training data
DThe irregular k-NN boundary, because more complex boundaries always reflect more information
Question 3 True / False

A linear classifier will misclassify some points in a non-linearly separable dataset no matter how long it is trained.

TTrue
FFalse
Question 4 True / False

A more complex decision boundary usually leads to better classification performance because it can capture more patterns in the data.

TTrue
FFalse
Question 5 Short Answer

What does the shape of a classifier's decision boundary reveal about the model, and why is this geometrically useful for understanding classification?

Think about your answer, then reveal below.