Question: In a binary tree, what is the maximum height of a tree with n nodes?
Options:
Correct Answer: n-1
Solution:
The maximum height of a binary tree with n nodes occurs when the tree is skewed, resulting in a height of n-1.