Question: What is the time complexity of a queue\'s enqueue operation in a linked list implementation?
Options:
Correct Answer: O(1)
Solution:
The enqueue operation in a linked list implementation of a queue has a time complexity of O(1) because it adds an element to the end of the list.