A) Shortest job scheduling algorithm
B) Round robin scheduling algorithm
C) Priority scheduling algorithm
D) Multilevel queue scheduling algorithm
A CPU scheduling mechanism known as a round robin scheduling algorithm defines the time quantum. It assigns each process cyclically through a predetermined time slot. It is the first come, first served CPU Scheduling method in the preemptive mode.
- Circle Robin CPU algorithms frequently emphasize the Time Sharing approach.
- The time frame within which a process can operate in a preventive manner is known as a quantum.
- The CPU is allocated to each job or process in the ready queue for that time quantum. If the process's execution is finished during that period, the current process will end. Otherwise, it will return to the waiting area and wait for the next turn to finish the execution.
Comments
write a comment