By far the most common questions that I have been asked are one way or other related to Random Forests
It's important to know it inside out.
Here's are some of those questions:
0/8
Q: What ensemble principle is used in Random Forests?
A: Random Forest works on the principle of the bagging ensemble technique.
Bagging stands for Bootstrap Aggregation.
In Bagging, random data samples in a training set are used with replacement.
1/9
Q: Do Random Forests require pruning?
A: Random Forests usually do not require pruning as they don't overfit like a single DT as trees are bootstrapped and multiple random trees use random features so the individual trees are strong predictors without being correlated.
2/9