Computer Science, asked by prasannamaila22, 10 months ago

Design a scheduling program to implements a Queue with two levels:
Level 1 : Fixed priority preemptive Scheduling
Level 2 : Round Robin Scheduling
For a Fixed priority preemptive Scheduling (Queue 1), the Priority 0 is highest priority. If one
process P1 is scheduled and running , another process P2 with higher priority comes. The New
process (high priority) process P2 preempts currently running process P1 and process P1 will go
to second level queue. Time for which process will strictly execute must be considered in the
multiples of 2..
All the processes in second level queue will complete their execution according to round robin
scheduling.
Consider: 1. Queue 2 will be processed after Queue 1 becomes empty.
2. Priority of Queue 2 has lower priority than in Queue 1.


vijaytvr198: can u send this answer

Answers

Answered by rohan78176
4

hi JJ Jiminy v do no no Knoll op


rohan78176: bye
nancypawansharmapami: yes baby talk with uh tomorrow
rohan78176: yes darling
nancypawansharmapami: ok jan bye baby ♥️♥️♥️♥️♥️♥️♥️♥️uuuuummmmm
rohan78176: ummmma
rohan78176: bye
rohan78176: jan love u
rohan78176: ummma
nancypawansharmapami: yaa baby love uh to bye ummmmmmm
nancypawansharmapami: hiii baby
Answered by Sidyandex
0

Answer:

# MLFQ

===========================================================

 Simulating Multilevel-FeedBack-Scheduling-Queue-in-C++-

===========================================================

This application implements Multilevel Feedback Queue in C++ with two levels:

Level 1 : Fixed priority preemptive Scheduling

Level 2 : Round Robin Scheduling

===========================================================

                   SYSTEM DETAILS

===========================================================

1. Fixed priority preemptive Scheduling (Queue 1)

* Priority 0 is highest priority.

* Quantum : 4 unit time

* Preemptive:

If one process e.g. P1 is scheduled and running , now another process with higher priority comes e.g. P2. New process(high priority)

process P2 preempts currently running process P1 and process P1 will go to second level queue.

2. Round Robin Scheduling (Queue 2)

* Quantum : 4 unit time

* All the processes in second level queue will complete their execution according to round robin scheduling.

* Queue 2 will be processed after Queue 1 becomes empty.

* Priority of Queue 2 has lower priority than in Queue 1.

Suppose Queue 1 is empty and currently process from Queue 2 is being executed. Now, If at this time a new process arrives then new process will be part of Queue 1. So, new

process should be scheduled as Queue 1 has higher priority than Queue 2. Again after Queue 1 becomes empty Queue 2 will resume execution.

===========================================================

                     INPUT FORMAT

===========================================================

<pid> <arrival_time> <burst_time> <priority>

===========================================================

                     OUTPUT FORMAT

===========================================================

<pid Response_Time Finish_Time Waiting_Time >

===========================================================

                     Sample Input :

===========================================================

5

1 0 14 2

2 7 8 1

3 3 10 0

4 5 7 2

5 1 5 3

===========================================================

                   Sample Output:

===========================================================

1 0 44 30

2 0 31 16

3 0 41 28

4 6 34 22

5 14 35 29

Similar questions