What does the acronym LIFO mean?
Last in first out
What does the acronym FIFO mean?
First in first out
What methods are available on a Stack data structure?
pop, push, peek, print
What must you do to access the value at an arbitrary point in a stack (not just the “top”)?
removing the top
What methods are available on a Queue data structure?
enqueue, dequeue
What must you do to access the value at an arbitrary point in a queue (not just the “front”)?
..