1
Q

What is secondary storage?

A

Long term storage of files, software and the OS

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

Why is secondary storage needed?

A

RAM is a temporary memory storage and it is volatile, so we need a non-volatile, high capacity storage system.

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

What is the conventional secondary storage device in computers?

A

The HDD

  • has a large storage capacity (in the TB range)
  • but it does take longer to access data from here than from RAM – so we move the data to RAM when we are actually using it.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the three types of storage technologies?

A

Optical storage
Magnetic storage
Solid state storage

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

What is optical storage?

A

uses laser light to burn pits onto the surface to represent 0/1

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

What are examples of optical storage?

A

CD/DVD storage

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

What is magnetic storage?

A

HDD has an arm that moves across a spinning disk that picks up different levels of magnetism (0/1) – a tape head reads the magnetic state as the passes through it.

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

What are examples of magnetic storage?

A

HDD or magnetic tape

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

What is solid state storage?

A

made from transistors (switches) which can have states of on or off (0/1)

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

What are examples of solid state storage?

A

Flash memory/USB sticks/SD cards

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

What are the characteristics of storage technologies?

A

Capacity - how much data can it store?
Speed - how fast can it access the data?
Portability - how easy is it to move it from one place to another
Durability - how well does it last e.g. if it is dropped
Reliability - how consistently does it perform?
Cost - how much does it cost per KB, MB or GB?

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

What are the units of data in computing starting from small to big?

A

bit, byte, KB, MB, GB, TB, PB

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

What is the data capacity calculation for text files?

A

1 byte per character, + 10% for any overheads (e.g. file type);

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

How much storage does text require?

A

1 byte per character

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

How much storage does an integer require?

A

Integer

4/8 bytes

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

How much storage does a real require?

A

Real

4/8 bytes

17
Q

How much storage does a Boolean state require?

A

Boolean

1 byte

18
Q

How much storage does a date require?

A

Date

8 bytes

19
Q

What is the data capacity calculation for databases?

A

Step 1: How many bytes in 1 record.
Step 2: Multiply by the number of records
Step 3: Add 10% for overheads

20
Q

What is the data capacity calculation for images?

A

(Number of pixels * number of bytes per pixel) + 10% for overheads

21
Q

What is the data capacity calculation for sound?

A

bytesPerSample * samplesPerSecond * channels * duration