1,564 views
3 votes
3 votes

Round Robin Scheduler implemented a version with feedback queues. There are two ready queues in the system. All new processes are placed in the higher priority Ready queue and interrupted processes are placed in the lower priority ready queue. If there are any processes in the higher priority ready queue then first schedule them by RR before scheduling lower priority ready queue processes.

Consider the following processes with the arrival times and burst times.

Process P1 P2 P3 P4 P5
Arrival Time 0 2 3 5 6
CPU burst time 3 5 2 4 3

What is the average turn around time of all processes in the given system with time quantum of 2 units for the both ready queues?

2 Answers

Best answer
5 votes
5 votes

Average T.AT = 9.8

selected by

Related questions

0 votes
0 votes
1 answer
2
DanMal asked Jul 16, 2018
1,295 views
Hi guys , got big problem with this ask , i don't know how to solve it . I would be very thankful if someone help me ;)
0 votes
0 votes
1 answer
4
ajit asked Sep 20, 2015
2,608 views
Feedback queuesa)are very simple to implementb)dispatch tasks according to execution characteristicsc)are used to favour real-time tasksd)require manual intervention to i...