Question: What is the output of the following Python code for a binary tree traversal: \'preorder_traversal(root)\'?
Options:
Correct Answer: Root, Left, Right
Solution:
Preorder traversal visits the root node first, followed by the left subtree and then the right subtree, resulting in \'Root, Left, Right\'.