What is the difference between priority scheduling and round robin scheduling?

Showing Answers 1 - 3 of 3 Answers

Priority scheduling

In priority scheduling scheduler selects tasks on basis of their priority. The process with higher priority will run first and its completion another will start. The disadvantage is this that processes with lower priority are not given much opportunity to run.


Round Robin Scheduling


It is one of the oldest, simplest, fairest and most widely used scheduling algorithms, designed especially for time-sharing systems. A small unit of time, called timeslice or quantum, is defined. All runnable processes are kept in a circular queue. The CPU scheduler goes around this queue, allocating the CPU to each process for a time interval of one quantum. New processes are added to the tail of the queue.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions