Interactive queue data-structure visualizer — enqueue at the tail, dequeue from the head, peek the front.
OS ready queues and printer spoolers serve requests in arrival order — fair and starvation-free for equal-priority tasks.
BFS over graphs and trees uses a queue to visit nodes level by level, yielding the shortest path on unweighted graphs.
Producer/consumer pipelines, IO buffers and message queues decouple stage speeds — data leaves in the order it arrived.