Stack
A stack is a fundamental data structure in programming that follows the Last In, First Out (LIFO) principle, meaning that the last element added to the stack is the first one to be removed. It supports two primary operations: push, which adds an element to the top of the stack, and pop, which removes the top element from the stack. Stacks are commonly used in programming for tasks such as function call management, expression evaluation, and backtracking algorithms. For example, in a web browser, a stack could be used to manage the history of visited web pages, where each new page visited is pushed onto the stack, and when the user navigates back, pages are popped off the stack in reverse order.