14 - Mass Storage

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:52 PM on 4/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Platter

A rigid, magnetic disk within a hard drive that stores data; it can have one or two "sides" for recording.

2
New cards

Cylinder

The set of tracks that are at the same arm position across all platters in a disk drive.

3
New cards

Track

A circular path on the surface of a disk platter where data is recorded.

4
New cards

Sector (Block)

The smallest unit of data that can be read from or written to a disk, typically 4096 bytes in newer HDDs.

5
New cards

Seek Time

The time it takes for the disk arm to move the heads to the cylinder containing the desired sector.

6
New cards

Rotational Latency

The additional time spent waiting for the disk to rotate the desired sector to the disk head.

7
New cards

FCFS (First-Come, First-Served)

A disk scheduling algorithm that services requests in the order they arrive; it is fair but does not provide the fastest service.

8
New cards

SSTF (Shortest Seek Time First)

A disk scheduling algorithm that selects the request with the minimum seek time from the current head position; may cause starvation.

9
New cards

SCAN (Elevator Algorithm)

An algorithm where the disk arm moves from one end of the disk to the other, servicing requests along the way, then reverses direction.

10
New cards

C-SCAN (Circular SCAN)

A scheduling algorithm where the head moves from one end to the other, then immediately returns to the beginning without servicing requests on the return trip.

11
New cards

LOOK / C-LOOK

Versions of SCAN/C-SCAN where the arm only goes as far as the final request in each direction rather than the full width of the disk.

12
New cards

Low-level Formatting (Physical Formatting)

The process of dividing a disk into sectors that the hardware controller can read and write; occurs before logical formatting.

13
New cards

Partition

A large group of sectors treated by the OS as a separate logical disk.

14
New cards

Bad Block

A sector on a disk that is defective and unusable; the controller or OS must map these out to prevent data loss.

15
New cards

RAID (Redundant Array of Independent Disks)

A technology that provides data redundancy or improved performance by using multiple disk drives together.

16
New cards

Mirroring (RAID 1)

A RAID technique that duplicates data across two or more disks to provide high reliability.

17
New cards

Striping (RAID 0)

A RAID technique that splits data across multiple disks to increase speed, though it does not improve reliability.

18
New cards

Host-attached storage

Storage that is accessed through a local I/O port, such as a standard internal drive or RAID array.

19
New cards

Network-attached storage (NAS)

Storage made available over a network rather than a local connection, often consuming network bandwidth.

20
New cards

WORM (Write Once Read Many)

A type of tertiary storage, like a DVD-R, where data can be recorded once but never changed.