Question:medium

In case of a classification tree, predictions on unseen data are made using the ...............

Show Hint

Classification tree = Mode; Regression tree = Mean or Median.
Updated On: Jan 14, 2026
  • Mean
  • Median
  • Mode
  • RMSE
Show Solution

The Correct Option is C

Solution and Explanation

A classification tree predicts categorical outcomes. When presented with new data, it directs the data to a specific leaf node based on its characteristics. The prediction for that node is determined by the most frequent class label among the training samples that arrived at that node. This is because classification aims to identify the most probable class. Mean and median are utilized in regression trees for continuous outputs, not for classification. RMSE, a measure of performance for regression, is not a prediction method. Consequently, the mode is the appropriate method for classification trees.
Was this answer helpful?
0