OS Process Scheduling Flashcards

1
Q

Process execution consists of a cycle of CPU execution and I/O wait

A

CPU-I/O BURST CYCLE

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

when the CPU is running we call it?

A

a burst

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

keep the CPU as busy as possible

A

CPU utilization

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

of processes that complete their execution per time unit

A

throughput

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

amount of time to execute a particular process

A

turnaround time

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

amount of time a process has been waiting in the ready queue

A

waiting time

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

amount of time it takes from when a request was submitted until the first response is produced, not output (for a time-sharing environment)

A

response time

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

Scheduling Algorithm Optimization Criteria:

A

Max CPU utilization
- Max throughput
- Min turnaround time
- Min waiting time
-Min response time

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

short process behind long process

A

convoy effect

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

the time arrives - the time started so

A

waiting time

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

the time it stopped running - the arrival time

A

turnaround time

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

low priority processes may never execute

A

problem = starvation

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

as time progresses increase the priority of the process

A

solution = aging

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
  • Each process gets a small unit of CPU time (time quantum q), usually 10-100 milliseconds. After this time has elapsed, the process is preempted and added to the end of the ready queue.
A

Round Robin

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