Question: In a binary tree, what is the maximum number of leaf nodes possible?
Options:
Correct Answer: 2^h
Solution:
The maximum number of leaf nodes in a binary tree of height h is 2^h, as each level can have twice the number of nodes as the previous level.