Question:medium

Which statement correctly describes the use of regression and classification trees based on the nature of the dependent variable?

Show Hint

Regression trees = continuous output; Classification trees = categorical output.
Updated On: Jan 14, 2026
  • Regression trees are suitable for continuous dependent variables, while classification trees are suitable for categorical dependent variables.
  • Classification trees are suitable for continuous dependent variables, while regression trees are suitable for categorical dependent variables.
  • Both regression and classification trees are suitable for continuous dependent variables.
  • Both regression and classification trees are suitable for categorical dependent variables.
Show Solution

The Correct Option is A

Solution and Explanation

Decision tree algorithms are applicable to both regression and classification. Regression trees are employed when the target variable is continuous, such as forecasting house prices or temperature. Classification trees are utilized when the target variable is categorical, like determining if an email is spam. Consequently, option (A) accurately aligns regression with continuous outputs and classification with categorical outputs. Options (B), (C), and (D) incorrectly associate dependent variable types or fail to accurately delineate use cases. Therefore, option (A) is the correct choice.
Was this answer helpful?
0