Question: Which traversal method would you use to get the nodes of a binary tree in reverse level order?
Options:
Correct Answer: Level-order
Solution:
Level-order traversal visits nodes level by level, and to get them in reverse order, you can use a stack to reverse the order after the traversal.