Question: Which of the following traversal methods can be used to print the nodes of a binary tree level by level?
Options:
Correct Answer: Level-order
Solution:
Level-order traversal visits nodes level by level, making it suitable for printing nodes in that order.