Question: How do you find the height of a binary tree?
Options:
Correct Answer: Count the number of edges
Solution:
The height of a binary tree is defined as the number of edges on the longest path from the root to a leaf node.