Correct Answer: C. Compare candidate values using validation performance
Explanation:
Validation estimates how different k values generalize without using the final test set. The selected k should balance local flexibility against oversmoothing.
Correct Answer: A. It does not assume a fixed functional form with a fixed number of learned coefficients
Explanation:
k-NN represents the decision rule through stored data and local neighborhoods rather than a predetermined equation. Its effective complexity can grow with the amount of training data.
Correct Answer: D. To give closer neighbors more influence than farther neighbors
Explanation:
Distance weighting reflects the idea that very nearby cases may be more relevant to the query. Votes or response values are multiplied by weights that decrease with distance.
Correct Answer: C. It may need to compute distances to many stored training observations
Explanation:
A naive neighbor search compares each new case with all training cases. Prediction can therefore become slow and memory-intensive for very large datasets.
Correct Answer: A. It stores training examples and postpones most computation until prediction
Explanation:
k-NN does not estimate a compact parametric model during a conventional training phase. Neighbor searches and local prediction calculations occur when a query arrives.
Correct Answer: C. Distances become less informative as points appear similarly far apart
Explanation:
The curse of dimensionality weakens the contrast between near and far points in high-dimensional spaces. Irrelevant features can therefore destroy meaningful neighborhood structure.
Correct Answer: D. A classification tie requiring a defined tie-breaking rule
Explanation:
Equal class votes do not identify a unique majority prediction. The implementation must specify a policy such as distance weighting or a deterministic class priority.
Correct Answer: D. It uses the majority class among the selected nearest neighbors
Explanation:
After finding the k closest labeled cases, classification is usually based on their vote. The class receiving the most votes is assigned to the new case.