406 views

3 Answers

2 votes
2 votes

Basic idea about bounded waiting is after how many times does a process gets its chance to execute is monitored or not and usual the monitoring is done by placing a queue So by this reference I would say Yes.

As it gives every process an oppurtunity to enter the critical section and also it does that in queue order Like FCFS hence round robin satisfies bounded waiting.

Open for any corrections :)

1 votes
1 votes
If there are n processes each alloted a time quantum q,then every process theoretically will execute again after time (n-1)×q.So yeah bounded waiting is there.
0 votes
0 votes
While Round Robin provides fairness and prevents starvation by giving each process a chance to execute, it does not guarantee bounded waiting time for each process. Bounded waiting means that every process will eventually get its turn to execute within a certain amount of time.

Round Robin provides fairness but does not guarantee bounded waiting time for each process. Processes may experience varying waiting times, and the waiting time can be influenced by factors such as the number of processes in the system and their burst times.

Related questions

1.5k
views
1 answers
0 votes
anupamsworld asked Jun 6, 2022
1,498 views
Lets consider one situation where,OS is scheduling processes(P1,P2,P3...Pn) with Round Robin method and current running process is P1 and next scheduled process ... quantum=3unit for the given data below. AT=Arrival Time, BT=Burst Time
456
views
0 answers
0 votes
Prakhar Singh Gaharw asked Oct 21, 2018
456 views
processes 1,2,3,4,5 with burst time as 4,1,8,1,2 and arrival time as 0+ RoundRobin used with TQ=1 what will be arrival time chart for processes 1,2,3,4,5.
2.8k
views
3 answers
3 votes
Karan Dodwani 1 asked Aug 22, 2018
2,842 views
Consider a System using Round Robin scheduling with 10 Processes all arriving at the time 0. Each Process is associated with 20 identical Request. Each Process ... last Process.iii. Response time of the subsequent request of any process.
11.6k
views
1 answers
6 votes
sunil sarode asked Nov 15, 2017
11,645 views
Measurements of a certain system have shown that a process runs, on the average, for time T before blocking for Input/Output. Process switch ... c and hence option D with example ,Thanks and sorry if it is naive question :)