Question: What is the space complexity of a recursive function that uses a stack?
Options:
Correct Answer: O(n)
Solution:
The space complexity of a recursive function is O(n) due to the stack space used for function calls.