Question: In a binary tree, how many leaf nodes can there be at maximum if there are n internal nodes?
Options:
Correct Answer: n + 1
Solution:
In a binary tree, the maximum number of leaf nodes is n + 1, where n is the number of internal nodes.