in Operating System recategorized by
2,132 views
6 votes
6 votes

A scheduling Algorithm assigns priority proportional to the waiting time of a process. Every process starts with priority zero (lowest priority). The scheduler reevaluates the process priority for every 'T' time units and declares next process to be scheduled. If teh process have no I/O operations and all arrive at time zero, then the schduler implements ___ criteria

  1. Priority scheduling
  2. Rond Robin Scheduling
  3. Shortest Job First
  4. FCFS
in Operating System recategorized by
2.1k views

2 Answers

3 votes
3 votes
Best answer
The scheduling algorithm works as Round Robin algorithm with quantum time equals to t. After a process's turn comes and it has executed for t units, its waiting time becomes least and its turn comes again after every other process has got the chance for t units.

B is answer
selected by

1 comment

@ Anirudh what if priority is inversely proportional to the waiting time of a process ??
0
0
2 votes
2 votes
As per question 10 cpu-bound processes arrives @ same time at time 0 so waiting time is same for all processes so same priority also as per question.

So here Round Robin with Time Quantum="T"
Answer:

Related questions