Question: What is the result of a level-order traversal of a binary tree?
Options:
Correct Answer: Nodes are visited from top to bottom and left to right
Solution:
Level-order traversal visits nodes level by level, starting from the root and moving from left to right.