Posts

Showing posts from November, 2019

Scheduling algorithms: O.S

Image
Home Scheduling algorithms:  Process Queues:The Operating system manages various types of queues for each of the process states. The PCB related to the process is also stored in the queue of the same state Process scheduling is an essential part of a Multiprogramming operating systems. Times related to the Process 1. Arrival Time The time at which the process enters into the ready queue is called the arrival time. 2. Burst Time The total amount of time required by the CPU to execute the whole process is called the Burst Time. 3. Completion Time The Time at which the process enters into the completion state or the time at which the process completes its execution, is called completion time. 4. Turnaround time The total amount of time spent by the process from its arrival to its completion, is called Turnaround time.  5. Waiting Time The Total amount of time for which the process waits for the CPU to be assigned is called waiting time.  6. Resp