which of these data types is used by operating system to manage the Recursion in Java?
A
Array
B
Stack
C
Queue
D
Tree
Correct Answer: Stack
In computer science, a Stack is an abstract data type that serves as a collection of elements, with two main principal operations: Push, which adds an element to the collection, and Pop, which removes the most recently added element that was not yet removed.