Question: What is the space complexity of a binary heap storing n elements?
Options:
Correct Answer: O(n)
Solution:
The space complexity of a binary heap storing n elements is O(n) because it needs to store all n elements.