Question: In a binary tree, what is the maximum number of children a node can have?
Options:
Correct Answer: Two
Solution:
In a binary tree, each node can have at most two children, typically referred to as the left and right child.