Question: In a complete binary tree, what is the relationship between the number of nodes and the height of the tree?
Options:
Correct Answer: Nodes = 2^(height + 1) - 1
Solution:
In a complete binary tree, the number of nodes is given by the formula Nodes = 2^(height + 1) - 1.