Question: Which data structure is best suited for implementing a LIFO (Last In First Out) mechanism?
Options:
Correct Answer: Stack
Solution:
A stack is designed to operate in a LIFO manner, where the last element added is the first one to be removed.