answersLogoWhite

0


Best Answer

waiting time =turn around time-burst time

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you calculate the wait time for round robin scheduling?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which scheduling policy is suited in time sharing operating system?

Round Robin


Round robin scheduling program in java?

Round robin is the scheduling algorithm that is utilized by the CPU, or central processing unit, during the execution of the process. It is specifically designed for time sharing systems.


What is virtual round robin CPU scheduling?

A variant of round robin scheduling is called selfish round robin scheduling. In selfish round robin, there is a maximum limit on the number of processes that can be placed in the round-robin queue (including the process being executed by the CPU). After that maximum is reached, newly entering processes are placed on a holding queue. Processes in the holding queue do not get any time slice of the CPU. When a process in the round-robin queue completes and leaves the system, the oldest process in the holding queue is allowed to enter the round-robin queue


Which scheduling policy is most suitable for a time shared operating system?

robinhood sorry its--------- round robin


Is the round robin CPU scheduling algorithm suitable for time sharing OS?

Yes, it is one of many scheduling algorithms suitable for time sharing.However it is not suitable for scheduling in a hard realtime OS that must consistently meet deadlines.


What is average waiting time in round robin scheduling in operating system?

the total time that staying in the queue that wait for process of each process.


What type of scheduling is there in RTOS?

A scheduler is the heart of every RTOS. It provides the algorithms to select the task for execution. Three common scheduling algorithms are > Cooperative scheduling > Round-robin scheduling > Preemptive scheduling RTOS uses preemptive (priority based) scheduling. In some cases, real-time requirements can be met by using static scheduling.


Is round robin scheduling preemptive or non primitive?

If a process does not complete before its CPU-time expires, the CPU is preempted and given to the next process waiting in a queue. The preempted process is then placed at the back of the ready list. Round Robin Scheduling is preemptive (at the end of time-slice) therefore it is effective in time-sharing environments in which the system needs to guarantee reasonable response times for interactive users.


What are the various types of scheduling in real time operating system?

Cyclic Round Robin Prioritised Co-Operative. I am a Engineering student currently studying this as part of our Microprocessor and Micro controller module.


What kind of data structure is required to implement the round-robin scheduling?

cicular queue :D if you want to implement the round robin you need the data structure of circular queue so that when we give the time quantum for the processes then if that process is complete in that time period then its ok but if not then we have to put that process in the queue so that all other processes are also get the time to execute i.e. to remove starvation


Why in round robin new processes place at end of queue rather than at beginning?

in roundrobin scheduling each process is gven a fixed time to execute so whenever a new process arrives it is placed at the end of the queue,,,,,the advantage by doing this type of scheduling is response time will be gud...But the disadvantage waiting time is more


Example of round robin?

The round robin scheduling algorithm works by placing all processes in a circular queue and allotting each process a single time slice until all processes are completed. If process A required 2 time slices, process B required 1 time slice, and process C required 3 time slices the queue would be as follows: A > B > C > A > C > C.