File System Flashcards

1
Q

What is the disk called in an HDD?

A

A Platter

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

What are HDD platters bound together around?

A

Spindle

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

What is at the end of a HDD arm?

A

Disk Read/Write head

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

Each partition of an HDD is given what kind of name?

A

Drive Letter, ex. C:

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

How many bytes are in a sector?

A

512 bytes

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

Groups of sectors together

A

Cluster

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

The smallest physical storage unit on a disk

A

Sector

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

The smallest amount of disk space that can be allocated to hold a file.

A

Cluster

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

The time to move the disk arm to the cylinder.

A

Seek time

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

The time for the desired sector to rotate to the disk head.

A

Rotational Latency

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

4 algorithms for disk scheduling.

A

1) First come, first served
2) Shortest seek time
3) Elevator (scan)
4) Shortest Positioning Time First

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

What does a file system do?

A

Controls how data is stored and retrieved to mass storage devices.

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

3-part architecture of the file system.

A

1) Logical
2) Physical
3) Virtual

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

The file system architecture that is presented to the application programmer or user.

A

Logical File System

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

The code that talks to the hardware in a file system.

A

Physical File System

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

Which part of the file system architecture deals with device organization and disk scheduling algorithms?

A

Physical File System

17
Q

The architecture of the file system responsible for bringing together the physical and logical.

A

Virtual File System

18
Q

What is a file?

A

Linear array of bytes with a name and a FCB or inode number associated.

19
Q

What is a directory?

A

A list of pairs of file names and low-level names.

20
Q

Information about a file’s format and organization stored in a file header, only visible to the file-system.

A

Metadata

21
Q

Non human-readable name for a file

A

Magic number, or Identifier

22
Q

Determines which applications are allowed to access and interpret a file

A

File type

23
Q

File type is identified using:

A

File extension

24
Q

The topmost directory

A

Root Directory

25
Q

A path name that begins at the root

A

Absolute

26
Q

A path name that begins at the current directory

A

Relative

27
Q

Three methods for disk allocation

A

1) Contiguous
2) Linked
3) Indexed

28
Q

Which disk allocation method is best in most cases?

A

Contiguous Allocation

29
Q

What is a limitation of contiguous allocation?

A

Fragmentation

30
Q

A disk allocation method that uses linked list of blocks.

A

Linked Allocation

31
Q

When a file doesn’t entirely fit a series of clusters.

A

Internal Fragmentation

32
Q

When a file’s clusters are not allocated contiguously.

A

External Fragmentation