A. Queue
B. Stack
C. Array
D. Linked List
Answer: Stack
A. Queue
B. Stack
C. Array
D. Linked List
Answer: Stack
Additional Information: A stack is a data structure that operates on the Last In First Out (LIFO) principle, meaning the last element added is the first one to be removed, commonly used in function calls and backtracking algorithms.
Subjects: Computer