Question: Which data structure is best suited for implementing a stack?
Options:
Correct Answer: Both Array and Linked List
Solution:
Both arrays and linked lists can be used to implement stacks, as they both support LIFO (Last In First Out) operations.