Question: What is the average time complexity of accessing an element in a queue implemented using a linked list?
Options:
Correct Answer: O(1)
Solution:
Accessing the front element of a queue implemented using a linked list takes O(1) time, as it points directly to the head of the list.