Question: What is the result of a level-order traversal on the binary tree with root 1, left child 2, and right child 3?
Options:
Correct Answer: 1, 2, 3
Solution:
Level-order traversal visits nodes level by level, starting from the root, resulting in the order: 1, 2, 3.