What must you do to access the value at an arbitrary point in a queue (not just the “front”)?
Dequeue until you reach desired value
What does the acronym FIFO mean?
First In First out
What methods are available on a Queue data structure?
enqueue()
dequeue()
peek()
How are linked lists different from an array?
Linked lists are sequential access (like a queue), not random access (like an array).
How would you access an arbitrary node in a linked list (not just the “head”)?
You would have to jump from node to node until you reach it. Through the .next property.