Question: What is the result of an in-order traversal of the binary tree with root 1, left child 2, and right child 3?
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 2, 1, 3.