How round robin algorithm works ?

Questions by kirankumar samudrala   answers by kirankumar samudrala

Showing Answers 1 - 3 of 3 Answers

In round robin algorithm time slices are assigned to each process in equal portions and in circular order, handling all processes without priority. Round-robin scheduling is simple, easy to implement, and starvation-free.

Let us consider that there are 4 jobs :A,B,C,D.
Round Robin will give each job the same amount of CPU time until they are finished. Cycle goes like A B C D A B C D for two cycles.If one of the jobs finishes it will be removed from the queue. If a job is added it will be added to the circular 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