Question: What is the time complexity of deleting an element from a queue?
Options:
Correct Answer: O(1)
Solution:
Deleting an element from the front of a queue is done in constant time, hence O(1).