Correct Answer: C. Features with large numerical scales can dominate distance calculations
Explanation:
Distance-based methods are affected by the units and ranges of their features. Scaling gives variables a more comparable influence on neighborhood formation.
Correct Answer: C. Local class structure may be oversmoothed
Explanation:
A very large neighborhood mixes distant observations and can ignore small but genuine local regions. The model may then underfit by favoring broad majority patterns.
Correct Answer: D. Each prediction depends entirely on the single closest training point
Explanation:
One mislabeled or unusual training case can determine the prediction in its neighborhood. This low-bias, high-variance setting can overfit the training data.
Euclidean distance measures straight-line separation between feature vectors. Other distances may be used, but Euclidean distance is a common default for scaled numerical data.
k-NN predicts an outcome by using examples whose labels or response values are already known. Learning from labeled examples is the defining feature of supervised learning.
Correct Answer: D. Higher temperature is associated with a lower predicted response
Explanation:
A negative coefficient means the fitted response decreases as that predictor increases, conditional on other model variables. The sign alone does not establish causation or practical importance.
Correct Answer: B. Create indicator variables for categories while choosing a reference category
Explanation:
Indicator or dummy variables encode category membership without imposing a false numerical distance. A reference category prevents redundant columns when an intercept is present.
Correct Answer: A. It is extrapolation beyond the observed predictor range
Explanation:
Extrapolation assumes the fitted relationship continues into a region with no supporting training data. The true relationship may behave differently outside the observed range.
Correct Answer: C. Multicollinearity and unstable coefficient estimates
Explanation:
Highly correlated predictors make it difficult to separate their individual contributions. Coefficient estimates can become sensitive to small changes in the data.