Question: If a binary tree is balanced, what is the maximum height of the tree in terms of the number of nodes \'n\'?
Options:
Correct Answer: O(log n)
Solution:
In a balanced binary tree, the maximum height is O(log n), as the tree is structured to minimize height.