Concept Flow - Why stacks follow LIFO principle
Add item (Push)
Top of stack updated
Remove item (Pop)
Last added item removed first
Stack shrinks from top
Repeat push/pop operations
Items are added and removed only at the top, so the last item added is the first to be removed.