Queue operations include:
1. _Enqueue_: Add an element to the end of the queue.
2. _Dequeue_: Remove the front element from the queue.
3. _Peek_: Return the front element without removing it.
4. _IsEmpty_: Check if the queue is empty.
5. _Size_: Return the number of elements in the queue.