Question: How do you determine the height of a binary tree?
Options:
Correct Answer: Maximum depth of any node
Solution:
The height of a binary tree is defined as the maximum depth of any node, which is the longest path from the root to a leaf.