TOPIC-SJF-and-FCFS-Scheduling-Algorithm (1)
TOPIC-SJF-and-FCFS-Scheduling-Algorithm (1)
SUBMITTED BY
<Your Name>
GROUP MEMBERS:
SHIVANI SARGAR(IT/22/049)
Advantages Disadvantages
FCFS is the simplest CPU scheduling algorithm. It allocates the CPU to the process that requests it first, using a FIFO queue. FCFS is non-preemptive, meaning a process keeps the CPU until it completes its task or re
• Easy to implement • Convoy effect: Long burst time processes can block
• Fair scheduling shorter ones.
• Not suitable for interactive systems
• Non-preemptive, so long tasks can delay others.