Question: What is the post-order traversal of the binary tree with root A, left child B, and right child C?
Options:
Correct Answer: B C A
Solution:
In post-order traversal, the left child is visited first (B), then the right child (C), and finally the root (A), resulting in B C A.