Memory and Storage Flashcards

(34 cards)

1
Q

What is RAM?

A

Volatile memory that stores data and programs currently in use.

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

What is ROM?

A

Non-volatile memory storing essential instructions.

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

What’s the difference between RAM and ROM?

A

RAM is volatile (loses all its data when shut off) while ROM. RAM can be read and written to while ROM is read only.

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

What is virtual memory?

A

Space on secondary storage used as extra RAM when RAM is full.

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

Why is virtual memory slower than RAM?

A

Because it is stored on a hard drive or SSD, which is slower to access.

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

What happens when the CPU uses virtual memory too much?

A

The system slows down (known as “disk thrashing”).

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

What are the three types of secondary storage? Give an example for each of them.

A

Magnetic (Hard Disk Drive (HDD), optical (CD, DVD, Blu-ray), and solid-state (Solid State Drive), Universal Serial Bus (USB).

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

How does magnetic storage work?

A

Uses spinning disks and read/write heads to store data magnetically.

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

How does optical storage work?

A

Uses lasers to read/write pits on a disc surface.

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

How does solid-state storage work?

A

Uses flash memory and electrical circuits, with no moving parts.

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

Which storage type is fastest?

A

Solid-state (SSD).

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

Which storage type is cheapest per GB?

A

Magnetic (HDD).

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

Which storage type is most durable?

A

Solid-state (no moving parts).

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

What three factors are used to compare storage devices?

A

Capacity, speed, durability.

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

Why is SSD better for performance than HDD?

A

It has faster read/write speeds and no moving parts.

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

What is 1 byte equal to?

16
Q

What is a nibble?

A

4 bits (half a byte).

17
Q

Arrange these from smallest to largest: nibble, kilobyte, terabyte, byte, bit, gigabyte, petabyte, megabyte.

A

bit (1), nibble (4/half a byte), byte (8), kilobyte (1000 bytes), megabyte (1000 KB), gigabyte (1000 MB), terabyte (1000 GB), petabyte (1000 TB)

18
Q

What is binary and why do computers use them?

A

Because they operate using electrical signals (on/off). Computers use them because they operate using electrical signals (on/off).

19
Q

Convert the binary number 101101 to denary.

A

1 0 1 1 0 1
= 32 + 0 + 8 + 4 + 0 + 1
= 45

20
Q

Convert the denary number 57 to binary.

A

57 → 32 + 16 + 8 + 1
= 00111001

21
Q

Convert binary 11110000 to hexadecimal.

A

Break into nibbles: 1111 | 0000
1111 = F
0000 = 0
= F0
10 11 12 13 14 15
A B C D E F

22
Q

Convert denary 255 to hexadecimal.

A

128 64 32 16 8 4 2 1
1 1 1 1 1 1 1 1
8 4 2 1 8 4 2 1
1 1 1 1 | 1 1 1 1
15 15
10 11 12 13 14 15
A B C D E F
FF

23
Q

Q: What is resolution?

A

A: Number of pixels in an image (width × height).

24
Q: What is colour depth?
A: Number of bits used per pixel.
25
How does colour depth affect file size?
A: Higher colour depth → larger file size.
26
How does resolution affect file size?
A: More pixels → larger file.
27
What is sample rate?
A: Number of samples taken per second (Hz).
27
What is bit depth in sound?
A: Number of bits used per sample.
28
How do sample rate and bit depth affect sound?
A: Higher values give better quality but larger file size.
29
What is compression?
A: Reducing the size of a file.
30
What is lossy compression?
A: Permanently removes unnecessary data (e.g., MP3, JPEG).
31
What is lossless compression?
A: Removes redundancy but no data is lost (e.g., ZIP, PNG).
32
Which compression type gives the smallest file size?
A: Lossy.