Question: What is the space complexity of an array of size n?
Options:
Correct Answer: O(n)
Solution:
An array of size n requires O(n) space to store its elements.