Question: If a stack is implemented using a linked list, what is the time complexity of the \'pop\' operation?
Options:
Correct Answer: O(1)
Solution:
The \'pop\' operation in a stack implemented using a linked list is done in constant time, O(1), as it involves removing the head node.