Question: What is the output of the following in-order traversal on the binary tree: 1, 2, 3, 4, 5?
Options:
Correct Answer: 1, 2, 3, 4, 5
Solution:
In-order traversal visits the left subtree, then the node, and finally the right subtree, resulting in the sorted order of the nodes.