Question: What is the height of a binary tree with only one node?
Options:
Correct Answer: 0
Solution:
The height of a binary tree with only one node is 0, as height is defined as the number of edges on the longest path from the root to a leaf.