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