Scheduling Methods Flashcards

1
Q

First come first serve

A

Processes are executed as they arrive
Processes in the queue have to wait until the currently running process is executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Shortest job first

A

Picks the shortest then executes it
Scheduler needs to know how long each will take

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Round Robin

A

Each process is allotted a fixed amount of time to run
If the process has not finished by the end of the time, it is put at the back of the queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Shortest remaining time

A

Same as shortest job first except processes can be suspended if a higher priority process enters the queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Multi level feedback queues

A

Multiple queues possibly with different scheduling methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly