Which data structure is mainly used for implementing the recursive algorithm? A. Stack B. Linked list C. Binary tree D. Queue Answer Workspace Report Discuss Answer with explanation Answer: Option A Explanation The correct answer is Stack Recursion means calling the function itself again. Stack is used to maintaining the previous records of the function Workspace
Discuss about the question