What is a stack?
A data structure where values are added to the top and removed from the top
What type of data structure is a stack?
Last in First Out (LIFO)
What error can occur when pushing an item onto the stack?
The stack could be full and stack overflow occurs
What is the difference between pop and peek?
Pop removes an item of the stack and returns it
Peek only looks at the top item