Question: What is the main disadvantage of using a linked list to implement a stack?
Options:
Correct Answer: Higher memory usage per element
Solution:
The main disadvantage of using a linked list to implement a stack is the higher memory usage per element due to the storage of pointers in addition to the data.