Question: In a binary tree, if a node has two children, how many nodes can be at the next level?
Options:
Correct Answer: 4
Solution:
If a node has two children, it can lead to a maximum of 4 nodes at the next level (2 children for each of the 2 children).