Question:medium

Which data structure is used in recursive function implementation?

Show Hint

Every recursive call creates an activation record that is pushed onto the Call Stack. Recursion and Stack are closely related concepts in programming.
Updated On: Jun 25, 2026
  • Stack
  • Queue
  • Tree
  • Graph
Show Solution

The Correct Option is A

Solution and Explanation

Was this answer helpful?
0