Question: What is the result of a post-order traversal on a binary tree with nodes 1 (root), 2 (left), 3 (right)?
Options:
Correct Answer: 2, 3, 1
Solution:
Post-order traversal visits the left child, then the right child, and finally the root, resulting in the output 2, 3, 1.