Menu

CPU Scheduling Questions

MCQ
71.
The scheduler admits a process using __________
forum Discussion
MCQ
72.
The ____________ scheduling algorithm schedules periodic tasks using a static priority policy with preemption.
forum Discussion
MCQ
73.
Rate monotonic scheduling assumes that the __________
forum Discussion
MCQ
74.
In rate monotonic scheduling, a process with a shorter period is assigned __________
forum Discussion
MCQ
75.
There are two processes P1 and P2, whose periods are 50 and 100 respectively. P1 is assigned higher priority than P2. The processing times are t1 = 20 for P1 and t2 = 35 for P2. Is it possible to schedule these tasks so that each meets its deadline using Rate monotonic scheduling?
forum Discussion
MCQ
76.
If a set of processes cannot be scheduled by rate monotonic scheduling algorithm, then __________
forum Discussion
MCQ
77.
A process P1 has a period of 50 and a CPU burst of t1 = 25, P2 has a period of 80 and a CPU burst of 35. The total CPU utilization is?
forum Discussion
MCQ
78.
A process P1 has a period of 50 and a CPU burst of t1 = 25, P2 has a period of 80 and a CPU burst of 35. Can the processes be scheduled without missing the deadlines?
forum Discussion
MCQ
79.
Consider the following set of processes with their arrival times and burst times: | Process | Arrival Time | Burst Time | |---|---|---| | P1 | 0 | 8 | | P2 | 1 | 4 | | P3 | 2 | 9 | | P4 | 3 | 5 | The CPU scheduling algorithm used is Preemptive Shortest Remaining Time First (SRTF). A context switch incurs an overhead of 1 unit of time. Whenever the CPU switches from one process to another (due to preemption or completion), it takes 1 unit of time for the switch during which no process executes. If two processes have the same remaining time, the one that arrived earlier is scheduled. If they arrive at the same time and have the same remaining time, the process with the lower ID is scheduled. What is the average turnaround time for these processes?
forum Discussion
chevron_left BackPage 8 of 8