Question: Which traversal method would you use to get the nodes of a binary tree in pre-order?
Options:
Correct Answer: Visit node, visit left, visit right
Solution:
Pre-order traversal visits the node first, then the left subtree, and finally the right subtree.