answersLogoWhite

0

waiting time =turn around time-burst time

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

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.


Which scheduling policy is suited in time sharing operating system?

Round Robin


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


How do you calculate waiting time Round Robin algorithm?

To calculate the waiting time in the Round Robin scheduling algorithm, follow these steps: First, determine the completion time for each process by simulating the execution of processes in a cyclic manner for a fixed time quantum. Next, calculate the turnaround time for each process by subtracting the arrival time from the completion time. Finally, the waiting time for each process is found by subtracting the burst time from the turnaround time. The formula is: Waiting Time = Turnaround Time - Burst Time.


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 Applications of round robin?

Round robin is commonly used in scheduling algorithms for operating systems, where it allocates CPU time slices to each process in a cyclic order, ensuring fair distribution of resources. It is also applied in tournament scheduling, allowing each participant to compete against every other participant, which is useful in sports and games. Additionally, round robin can be used in load balancing for network servers, distributing incoming requests evenly across multiple servers to optimize performance and reduce downtime.


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