Question: Which traversal method visits all nodes of a binary tree in order?
Options:
Correct Answer: In-order
Solution:
In-order traversal visits all nodes of a binary tree in sorted order, visiting the left subtree, the node, and then the right subtree.