Question: Which data structure would you use to implement a call stack?
Options:
Correct Answer: Stack
Solution:
A call stack is implemented using a stack data structure, which allows for the last function called to be the first one to return (LIFO).