Question: In a binary tree, what is the time complexity of traversing all nodes using in-order traversal?
Options:
Correct Answer: O(n)
Solution:
In-order traversal visits each node exactly once, resulting in a time complexity of O(n).