Correct option is A
The correct answer is (a) Last-In-First-Out.
· In computer science, LIFO (Last-In-First-Out) is a method used to organize and manipulate data, typically in stack data structures. In this method, the most recently added element is the first one to be removed. It is widely used in programming for managing function calls, undo operations, and backtracking algorithms.
Information Booster:
· Example of LIFO: A stack of plates where the last plate placed on top is the first one to be removed.
· Applications: Used in data structures like stacks, recursive function calls, and memory management.