Question:medium

Which characteristics describe K-Nearest Neighbours (K-NN) algorithm?

Show Hint

Lazy learning = No model upfront. Non-parametric = No fixed assumptions.
Updated On: Jan 14, 2026
  • Lazy learning and parametric learning
  • Eager learning and non-parametric learning
  • Lazy learning and non-parametric learning
  • Eager learning and parametric learning
Show Solution

The Correct Option is C

Solution and Explanation

K-Nearest Neighbours (K-NN) is a straightforward and easily understood machine learning algorithm. It is categorized as a lazy learner because it defers model construction until prediction time, merely storing the training data. To classify a new data point, K-NN identifies the closest neighbours within the stored training data. Its non-parametric nature means it makes no assumptions about the underlying data distribution's form, relying instead on the entire training dataset for decision-making. This characteristic enables K-NN to effectively handle complex data structures, though it may incur significant computational costs with extensive datasets. Consequently, the accurate classification is Lazy learning and non-parametric learning.
Was this answer helpful?
0