Question: What is the time complexity of popping an element from a stack?
Options:
Correct Answer: O(1)
Solution:
Popping an element from a stack is also done in constant time, O(1), as it involves removing the top element.