Lesson 4: Disk Scheduling Flashcards

1
Q

—storage device that uses a magnetization process to write, rewrite and access data
—covered with a magnetic coating and stores data in the form of tracks, spots and sectors
—provide the bulk of secondary storage for modern computer systems

A

magnetic disk

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

common examples of magnetic disks

A

Hard disks, zip disks, floppy disks

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

—polyethylene tape coated with a magnetic particulate or film medium
—storage medium that allows for data archiving, collection, and backup

A

magnetic tapes

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

—the density of bits per track is uniform on media using it
—method used in CD-ROM and DVD-ROM drives

A

Constant Linear Velocity (CLV)

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

—method used in hard disks
—disk rotation speed can stay constant, and the density of bits decreases from inner tracks to outer tracks to keep the data rate constant

A

Constant Angular Velocity (CAV)

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

—done by Operating Systems to schedule I/O requests arriving for the disk
—also known as I/O Scheduling

A

Disk Scheduling

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

Two major components of access time (SR)

A

Seek time
Rotational latency

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

[Components of access time] the time for the disk arm to move the heads to the cylinder containing the desired sector

A

Seek time

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

[Components of access time] the additional time for the disk to rotate the desired sector to the disk head

A

Rotational latency

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

the time to transfer the data

A

Transfer Time

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

Formula for Disk Access Time

A

Seek time + Rotational latency + transfer time

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

Disk Scheduling Algorithms (F/S/S/CS/L/CL)

A

FCFS = First come, first served
SSTF = Shortest Seek Time First
SCAN
C-SCAN = Circular SCAN
LOOK
C-LOOK = Circular LOOK

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

—simplest of all the Disk Scheduling Algorithms
—the requests are addressed in the order they arrive in the disk queue

A

FCFS

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

—requests having shortest seek time are executed first
—requests near the disk arm will get executed first

A

SSTF

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

the disk arm moves into a particular direction and services the requests coming in its path and after reaching the end of disk, it reverses its direction and again services the request arriving in its path

A

SCAN

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

What is SCAN also known as?

A

elevator algorithm

17
Q

modified version of SCAN disk scheduling algorithm that deals with the inefficiency of SCAN algorithm by servicing the requests more uniformly

A

C-SCAN

18
Q

What is C-SCAN also known as?

A

Circular Elevator Algorithm

19
Q

—similar to the SCAN disk scheduling algorithm except for the difference that the disk arm in spite of going to the end of the disk goes only to the last request to be serviced in front of the head and then reverses its direction from there only
—prevents the extra delay which occurred due to unnecessary traversal to the end of the disk

A

LOOK

20
Q

—the disk arm in spite of going to the end goes only to the last request to be serviced in front of the head and then from there goes to the other end’s last request.
—prevents the extra delay which occurred due to unnecessary traversal to the end of the disk.

A

C-LOOK