Mental Model
A stack is like a pile where you add or remove items only from the top. Checking if it is empty means seeing if there is nothing in the pile, and checking if it is full means seeing if the pile has reached its limit.
Analogy: Imagine a stack of plates. If there are no plates, the stack is empty. If the stack is as tall as the shelf allows, it is full and you cannot add more plates.
Top -> [ ] [ ] [ ] [ ] [ ] Index 0 1 2 3 4 Top points to the last added plate or -1 if empty
