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