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