Question: What is the result of a level-order traversal on a binary tree with root 1, left child 2, and right child 3?
Options:
Correct Answer: 1, 2, 3
Solution:
In level-order traversal, we visit nodes level by level from top to bottom, resulting in the sequence 1, 2, 3.