Which data structure is used to implement a recursive function?
Q1. Which data structure is used to implement a recursive function?
Answer: Stack
Explanation: A stack is used to implement recursive functions, as it follows the LIFO principle, allowing for the correct order of function calls and returns.