Question: Which traversal technique is best suited for printing the nodes of a binary tree level by level?
Options:
Correct Answer: Level-order
Solution:
Level-order traversal is specifically designed to print the nodes of a binary tree level by level.