Question: What is the post-order traversal sequence of a binary tree with root 1, left child 2, and right child 3?
Options:
Correct Answer: 2, 3, 1
Solution:
In post-order traversal, we visit the left subtree, then the right subtree, and finally the root. Thus, the sequence is 2, 3, 1.