Which group has higher entropy?
- Only apples, fully pure
- Only bananas, fully pure
- Half apples and half bananas
How does a decision tree sort data?
- By asking one yes or no question at a time down branches
- By guessing the group without asking anything
- By sorting numbers from large to small only
Changing a few training rows can make a single tree grow a different shape with different answers.
Circle one: True False
In a forest, how is each tree fed its training data?
- Each tree gets an identical copy of all rows
- Each tree trains on a resample drawn at random with replacement
- Each tree trains on a single row only
For the first split, the algorithm tries every question. Which one does it pick?
- The one that lowers entropy the most
- The one asked least often before
- The one with the longest wording
How does a random forest turn many tree opinions into one prediction?
- It always trusts the tallest tree
- It averages the question wordings
- Every tree votes and the majority wins
What does a forest gain over one tree, and what does it give up?
- It gains accuracy and steadiness but gives up readability
- It gains speed and gives up accuracy
- It gains readability and gives up voting
Three changed rows reshape your whole tree and flip its answers. What should you conclude?
- The tree shows healthy stability
- The tree shows single-tree instability, a forest would be steadier
- Entropy was computed wrongly