Question 2169 – KVS DEC-2013
April 5, 2024UGC NET CS 2012 June-Paper2
April 5, 2024Question 11399 – Data-Structures
For implementation of recursion system uses ____ data structure.
Correct Answer: C
Question 582 Explanation:
Stack. Because of its LIFO (Last In First Out) property it remembers its ‘caller’ so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the function calls.
Linked list
Deque
Stack
Queue
