Question:

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

Show Hint

Lazy learning = No model upfront. Non-parametric = No fixed assumptions.
  • Lazy learning and parametric learning
  • Eager learning and non-parametric learning
  • Lazy learning and non-parametric learning
  • Eager learning and parametric learning
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

K-Nearest Neighbours (K-NN) is a simple and intuitive machine learning algorithm.
It is called a lazy learner because it does not build a model during training — it simply stores the training data and delays computation until prediction time.
When a new data point needs to be classified, K-NN searches for the nearest neighbours in the stored training data.
It is non-parametric because it does not assume any fixed form for the underlying data distribution.
Instead, it uses the entire training dataset to make decisions.
This is why K-NN can adapt well to complex data structures but can be computationally expensive for large datasets.
Therefore, the correct answer is Lazy learning and non-parametric learning.
Was this answer helpful?
0
0