Question: What is the time complexity of enqueue and dequeue operations in a standard queue implemented using a linked list?
Options:
Correct Answer: O(1)
Solution:
Both enqueue and dequeue operations in a queue implemented using a linked list have a time complexity of O(1).