Question: If a binary tree has \'n\' nodes, what is the maximum height of the tree?
Options:
Correct Answer: n
Solution:
The maximum height of a binary tree occurs when the tree is skewed (like a linked list), resulting in a height of n.