Question: In a binary tree, if a node has two children, how many nodes are there in the subtree rooted at that node?
Options:
Correct Answer: 3
Solution:
If a node has two children, there are 3 nodes in the subtree rooted at that node (the node itself and its two children).