Question: In which traversal method do you visit the left subtree, then the root, and finally the right subtree?
Options:
Correct Answer: In-order
Solution:
In In-order traversal, the left subtree is visited first, followed by the root node, and then the right subtree.