Question: What is the worst-case time complexity for accessing an element in a queue implemented using a linked list?
Options:
Correct Answer: O(n)
Solution:
Accessing an element in a queue implemented using a linked list has a worst-case time complexity of O(n) because you may need to traverse the list.