Question: What is the output of the following in-order traversal on the binary tree: 1 (root), 2 (left child), 3 (right child)?
Options:
Correct Answer: 2, 1, 3
Solution:
In-order traversal visits the left child first, then the root, and finally the right child, resulting in the output 2, 1, 3.