A queue is a data structure that follows the "First In, First Out"
(FIFO) principle. Imagine it like a line of people waiting to buy
tickets. The first person to get in line is the first one to be
served. Similarly, in a queue data structure:
Enqueue: Adding an item to the end.
Dequeue: Removing item from front.
Front: Retrieves the element at the front of the queue.