Module 6 Ppt Flashcards

1
Q

What are the two main categories of storage based on volatility?

A

Volatile storage and non-volatile storage

Volatile storage loses contents when power is switched off, while non-volatile storage retains contents.

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

What is primary storage?

A

Fastest media but volatile (e.g., cache, main memory)

Primary storage is essential for quick access to data currently in use.

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

What is secondary storage?

A

Next level in hierarchy, non-volatile, moderately fast access time (e.g., flash memory, magnetic disks)

Also referred to as online storage.

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

What is tertiary storage?

A

Lowest level in hierarchy, non-volatile, slow access time (e.g., magnetic tape, optical storage)

Often referred to as offline storage.

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

What is the function of the read-write head in magnetic disks?

A

Reads or writes magnetically encoded information

Positioned very close to the platter surface.

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

What is a sector in the context of magnetic disks?

A

The smallest unit of data that can be read or written, typically 512 bytes

Each track on a platter is divided into sectors.

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

What does the disk controller do?

A

Interfaces between the computer system and the disk drive hardware

It accepts commands to read/write sectors and remaps bad sectors.

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

What is RAID?

A

Redundant Arrays of Independent Disks

A disk organization technique that manages multiple disks to provide high capacity and reliability.

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

What is the purpose of redundancy in RAID systems?

A

To store extra information that can be used to rebuild information lost in a disk failure

Techniques like mirroring help prevent data loss.

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

What is RAID Level 1?

A

Mirrored disks with block striping

Offers best write performance and is popular for applications like log files.

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

What is the main characteristic of RAID Level 0?

A

Block striping; non-redundant

Used in high-performance applications where data loss is not critical.

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

What is the difference between bit-level striping and block-level striping?

A

Bit-level striping splits bits of each byte across multiple disks; block-level striping assigns whole blocks to different disks

Block-level striping is more efficient for I/O operations.

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

What is the main benefit of RAID Level 5?

A

Block-Interleaved Distributed Parity; partitions data and parity among all disks

Provides higher I/O rates and avoids the bottleneck of a single parity disk.

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

What is the P+Q Redundancy scheme in RAID Level 6?

A

Stores extra redundant information to guard against multiple disk failures

Offers better reliability than Level 5 at a higher cost.

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

What factors should be considered when choosing a RAID level?

A
  • Monetary cost
  • Performance
  • Performance during failure
  • Performance during rebuild

Each RAID level has different implications for these factors.

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

True or False: RAID Level 2 is commonly used today.

A

False

RAID Level 2 is not used since it is subsumed by Level 3 and Level 5.

17
Q

Fill in the blank: RAID Level 4 uses ________ to keep a parity block on a separate disk.

A

Block-Interleaved Parity

This allows for higher I/O rates for independent block reads.

18
Q

What is the main drawback of RAID Level 3?

A

Bit-striping forces single block reads to access all disks, wasting disk arm movement

This inefficiency is why it is not commonly used anymore.

19
Q

What does the term ‘mean time to data loss’ depend on?

A

Mean time to failure and mean time to repair

Example: MTTF of 100,000 hours and repair time of 10 hours leads to a high mean time to data loss.