Final answer:
A stack is a LIFO data structure where items are added and removed from the top.
Step-by-step explanation:
A stack is a Last-In-First-Out (LIFO) data structure where items are added and removed from the top. It does not have a bottom and can only remove items from the top. It is not a FIFO data structure, as the last item added is the first one to be removed.