Interview Questions: Explain the working of Decision Trees, with advantages and limitations
--
Decision trees are constructed using a series of binary decisions on the input features to predict the target variable.
A decision tree consists of a root node, internal nodes, and leaf nodes. The root node represents the entire dataset, and each internal node represents a decision based on one of the input…