In what order are items added to and removed from a stack?
Last in - first out (LIFO)
List the functions of these following operations:
- Create
- Delete
- Push
- Pop
- Peek
- isEmpty
- isFull
- currentSize
How are Stacks useful for recursion?
The operating system uses a stacks to control memory during recursive processes (adds new processed to top of stack, giving them priority)