The FCFS, which stands for First Come First Serve Scheduling Algorithm, is a non-preemptive scheduling algorithm, which means that if a process once starts executing in the processor, then it cannot be preempted in between the processing. Thus, the concept of priority and urgency is not ...
How to Avoid Convoy Effect in FCFS Scheduling?Preemptive scheduling like round-robin scheduling can be used to avoid Convoy Effect as in these algorithms every process will be given an equal chance to access the CPU. By using these smaller processes don’t have to wait much for CPU time –...