Operating System - Processes

1. Dijkstra's banking algorithm in an operating system, solves the problem of

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


2. In Round Robin CPU scheduling, as the time quantum is increased, the average turn around time

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


3. Pre-emptive scheduling is the strategy of temporarily suspending a running process

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


4. Consider a set of 5 processes whose arrival time. CPU time needed and the priority are given below

Process PriorityArrival Time (in ms)CPU Time Needed (in ms)Priority
P10105
P2052
P3231
P45204
P51023
smaller the number, higher the priority.
If the CPU scheduling policy FCFS, the average waiting time will be

  • Option : A
  • Explanation : According to FCFS process solve are p1 p2 p3 p4 p5 so
    for p1 waiting time =0 process time=10 then
    for p2 waiting time = (process time of p1-arrival time of p2)=10-0=10 then
    for p3 waiting time = (pr. time of (p1+p2)-arrival time of p3)=(10+5)-2=13 and
    same for p4 waiting time=18-5=13
    same for p5 waiting time=38-10=28
    So total average waiting time=( 0+10+13+13+28)/5=12.8
    So answer is 'A'.
    0 + 10 + (15- 2) + (18 5) + (38- 10) divided by 5, i.e. 12.8 ms.
    Note : Here we will not see priority, we only see who comes first. And here both p1 andp2 came simultaneously and so we take p1 first and it gives answer which matches in option.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


5. Consider a set of 5 processes whose arrival time. CPU time needed and the priority are given below

Process PriorityArrival Time (in ms)CPU Time Needed (in ms)Priority
P10105
P2052
P3231
P45204
P51023
smaller the number, higher the priority.
If the CPU scheduling policy is SJF, the average waiting time (without pre-emption) will be

  • Option : C
  • Explanation : 8 + 0 + 3 + 15 + 8 divided by 5, i.e. 6.8 ms.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *