Question: Which traversal method of a binary tree visits nodes in the order of left child, root, right child?
Options:
Correct Answer: In-order
Solution:
In-order traversal visits the left child first, then the root, and finally the right child, which results in the nodes being visited in ascending order for a binary search tree.