-
The Simplest CPU – scheduling algorithm is ______.
-
- SJF scheduling algorithm
- Round-robin scheduling algorithm
- Multilevel scheduling algorithm
- FCFS scheduling algorithm
Correct Option: D
First-Come, First-Served (FCFS) Scheduling is the simplest CPU scheduling algorithm. It is like customers waiting in line at the bank or the post office or at a copying machine. Under it, the process that requests the CPU first is allocated the CPU first. However, the average waiting time under FCFS is long.