Question: What is the output 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 in-order traversal, we visit the left child first, then the parent, and finally the right child. Thus, the output is 2, 1, 3.