Question: What is the space complexity of a queue implemented using a linked list?
Options:
Correct Answer: O(n)
Solution:
The space complexity of a queue implemented using a linked list is O(n), where n is the number of elements in the queue.