Question: What is the level order traversal of the binary tree with root node value 1, left child 2, and right child 3?
Options:
Correct Answer: [1, 2, 3]
Solution:
The level order traversal visits nodes level by level, resulting in [1, 2, 3].