First Come First Served (FCFS) is the simplest scheduling algorithm. Processes are dispatched according to their arrival time on the ready queue. It's a non-preemptive algorithm. While simple to implement, FCFS can lead to the convoy effect, where short processes get stuck waiting for a long process to finish, potentially increasing the average waiting time.