Question: Which data structure would you use to implement a recursive algorithm iteratively?
Options:
Correct Answer: Stack
Solution:
A stack is used to implement a recursive algorithm iteratively, as it can keep track of function calls and local variables.