Question: What is a common application of stacks in programming?
Options:
Correct Answer: Managing function calls
Solution:
Stacks are commonly used to manage function calls in programming languages, where each function call is pushed onto the stack and popped off when it returns.