Question: In a binary tree, if a node has only one child, which traversal will still visit all nodes?
Options:
Correct Answer: All of the above
Solution:
All traversal methods (in-order, pre-order, post-order) will visit all nodes even if a node has only one child.