Question: Which traversal method visits the root node last?
Options:
Correct Answer: Post-order
Solution:
Post-order traversal visits the root node last, after visiting both left and right subtrees.