edited by
4,646 views

3 Answers

Best answer
15 votes
15 votes

Answer : Dispatch tasks according to execution characteristics

Why ?

Considering feedback queue as multilevel feedback queue, we can go ahead. For each level a different or maybe same time quanta is set which is at last followed by FCFS. So tasks are dispatched according to the execution characteristics.

This scheduling algorithm is intended to meet the following design requirements for multi-mode systems:

Give preference to short jobs.
Give preference to I/O bound processes.
Separate processes into categories based on their need for the processor.

 Multilevel feedback queue scheduling allows a process to move between queues. This movement is facilitated by the characteristic of the CPU burst of the process. If a process uses too much CPU time, it will be moved to a lower-priority queue.

For Better Understanding refer this : https://en.wikipedia.org/wiki/Multilevel_feedback_queue

selected by
3 votes
3 votes

Ans B) It executes tasks according to execution characteristics. Because if it implements in  priority scheduling it takes feedback from previous level queue , and then process and executes

(C) is not true . It is not very fast like real time tasks

(D) Not needed manual intervention .Time Sharing Schedular implements this algorithm

More details here

Answer:

Related questions

9 votes
9 votes
2 answers
1
go_editor asked Jun 13, 2016
5,845 views
The performance of Round Robin algorithm depends heavily onsize of the processthe I/O bursts of the processthe CPU bursts of the processthe size of the time quantum
8 votes
8 votes
2 answers
3
go_editor asked Jun 10, 2016
7,752 views
On a system using non-preemptive scheduling, processes with expected run times of 5, 18, 9 and 12 are in the ready queue. In what order should they be run to minimize wai...
5 votes
5 votes
1 answer
4
go_editor asked Jun 10, 2016
3,094 views
Round Robin schedule is essentially the pre-emptive version ofFIFOShortest job firstShortest remaining timeLongest remaining time