Question:medium

Which fundamental principle does the K-Nearest Neighbours (K-NN) algorithm operate on?

Show Hint

K-NN: Similar points stay close — distance matters!
Updated On: Jan 14, 2026
  • Objects that are similar tend to be located far apart.
  • Objects that are similar tend to be located at random distances.
  • Objects that are similar tend to be located in a scattered manner.
  • Objects that are similar tend to be located close to each other.
Show Solution

The Correct Option is D

Solution and Explanation

The K-Nearest Neighbours (K-NN) algorithm operates on the principle that data points with akin characteristics are situated adjacently in feature space.
This is referred to as the locality assumption.
For predictions, K-NN identifies the training examples closest (the nearest neighbours) to a novel data point and bases its prediction on their corresponding values.
Options (A), (B), and (C) diverge from this concept by positing that similar objects are distant, randomly distributed, or dispersed, which conflicts with K-NN's logic.
Consequently, the accurate response asserts that similar objects are proximate.
Was this answer helpful?
0