Question:medium

Which data structure is used by the compiler to manage function calls and local variables (Activation Records)?

Show Hint

This is why infinite recursion causes a "Stack Overflow" error. The system runs out of memory because it keeps pushing new activation records onto the stack without ever popping them.
Updated On: Jul 4, 2026
  • Queue
  • Linked List
  • Stack
  • Heap
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0