What does the acronym FIFO mean?
first in first out
What methods are available on a Queue data structure?
- dequeue() - removes the “front” value from the queue and returns it
What must you do to access the value at an arbitrary point in a queue (not just the “front”)?
manipulate the dequeue and the enqueue until you retrieve the value