FCFS (First Come, First Served) is one of the simplest CPU scheduling algorithms in operating systems.
All processes are put into the ready queue (usually a FIFO queue) based on arrival time.
CPU picks the process at the front of the queue.
Once a process starts running, it runs until it completes (non-preemptive).