Question: In a complete binary tree, how many nodes are there at the last level if the total number of levels is \'h\'?
Options:
Correct Answer: 2^(h-1)
Solution:
In a complete binary tree, the last level can have up to 2^(h-1) nodes, where h is the total number of levels.