MEMORY AND STORAGE

studied byStudied by 2 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 77

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

78 Terms

1

What are the two main types of primary storage?

  • RAM (Random Access Memory)

  • ROM (Read-Only Memory).

New cards
2

What happens to the data in RAM when the power is turned off?

it is lost (RAM is volatile).

New cards
3

Can data be written to ROM during normal operation?

No, ROM is read-only

New cards
4

What type of data does RAM typically hold?

The operating system, running applications, and associated data while the computer is in use.

New cards
5

Why is ROM important during the boot process?

It stores the bootstrap loader/BIOS to start the computer.

New cards
6

Is RAM considered permanent or temporary storage?

Temporary, as it only works while the computer is powered on.

New cards
7

What is a key difference between RAM and ROM in terms of volatility?

RAM is volatile (loses data when powered off), while ROM is non-volatile (retains data even when powered off)

New cards
8

What happens if there is insufficient RAM to run multiple applications?

The computer uses virtual memory by temporarily moving data to/from secondary storage.

New cards
9

What is virtual memory?

a portion of secondary storage used as an extension of RAM to handle more data than available physical RAM.

New cards
10

How is ROM data retained when the computer is turned off?

ROM is non-volatile, so it retains data permanently.

New cards
11

Why is secondary storage needed in a computer?

To store files and programs permanently; it is non-volatile, reliable, low cost, and high capacity.

New cards
12

What type of storage does magnetic storage typically use?

Hard Disk Drives (HDDs).

New cards
13

How do magnetic storage devices read and write data?

a moving read/write head moves across rotating magnetic platters.

New cards
14

What are the advantages of magnetic storage? (3)

  • Reliable

  • cost-effective

  • provides high-capacity storage.

New cards
15

What is a disadvantage of magnetic storage?

Not very portable due to moving parts.

New cards
16

What type of memory do solid-state drives (SSDs) use?

Flash memory.

New cards
17

Why is data access faster in SSDs compared to HDDs?

SSDs have no moving parts.

New cards
18

What are some advantages of SSDs over HDDs?

  • Low power requirements

  • no noise or heat

  • lightweight

  • compact

  • robust

New cards
19

What is a disadvantage of SSDs compared to HDDs?

Smaller capacity and higher cost per unit of storage.

New cards
20

In what types of devices are SSDs commonly used?

Tablet computers and mobile phones.

New cards
21

What is the principle behind optical storage devices?

They use the properties of light to store data.

New cards
22

What are examples of optical storage media?

CDs, DVDs, and Blu-ray disks.

New cards
23

How does an optical storage device read data?

By reflecting laser light on the disk’s surface and interpreting reflections as 1s or 0s

New cards
24

What is a major disadvantage of optical storage?

It is easily damaged by mishandling and scratches.

New cards
25

How many bits make up a nibble?

4 bits.

New cards
26

How many bits make up a byte?

8 bits.

New cards
27

What is the equivalent of 1000 bytes?

1 kilobyte (KB).

New cards
28

How many kilobytes (KB) are in a megabyte (MB)?

1000 KB.

New cards
29

How many megabytes (MB) are in a gigabyte (GB)?

1000 MB.

New cards
30

How many gigabytes (GB) are in a terabyte (TB)?

1000 GB.

New cards
31

How many terabytes (TB) are in a petabyte (PB)?

1000 TB.

New cards
32

What formula is used to calculate the file size of a sound file?

Sample rate (Hz) × Duration (s) × Bit depth.

New cards
33

How is the file size of an image calculated?

Colour depth × Image height (pixels) × Image width (pixels).

New cards
34

What formula is used to calculate the file size of a text file?

Bits per character × Number of characters

New cards
35

What is the range of denary numbers

0-255

New cards
36

What is the range of hexadecimal numbers?

00-FF

New cards
37

What is the range of binary numbers in 8 bits?

00000000 - 11111111.

New cards
38

What does a left shift operation in binary represent

Multiplying by 2.

New cards
39

What does a right shift operation in binary represent?

Dividing by 2.

New cards
40

What is an overflow error in binary addition?

It occurs when there is a carry bit or leftover bit that exceeds the storage capacity.

New cards
41

What is the most significant bit (MSB) in an 8-bit number?

The leftmost digit, which represents 128 in decimal.

10000000

New cards
42

What is the least significant bit (LSB) in an 8-bit number?

The rightmost digit, which represents 1 in decimal.

00000001

New cards
43

How is each character represented in a computer

By a numeric binary code

New cards
44

What is the character set of a computer?

A list of all the characters available to the computer

New cards
45

What is ASCII, and how many characters can it represent?

ASCII is a 7-bit code that represents 128 characters

New cards
46

What is extended ASCII, and how many characters can it represent?

Extended ASCII uses an 8th bit, allowing it to represent 256 characters, including extra symbols and non-English characters.

New cards
47

What is Unicode, and how many characters can it represent in its original form?

Unicode originally used a 16-bit code to represent 65,536 characters

New cards
48

How does Unicode differ from ASCII?

Unicode has been extended to use more bits to represent billions of characters, while original ASCII and extended ASCII codes are subsets of Unicode.

New cards
49

What is the purpose of Unicode?

To represent a wide range of characters and symbols from various languages and systems

New cards
50

How are images represented on a computer screen?

As a series of pixels stored as binary codes.

New cards
51

What determines how many colors a pixel can represent

The number of bits used for each pixel.

New cards
52

How many colors can be represented with 1 bit per pixel?

2 colors (0 or 1).

New cards
53

How many colors can be represented with 2 bits per pixel?

4 colors (2²).

New cards
54

How many colors can be represented with 8 bits per pixel?

256 colors (2⁸).

New cards
55

What is color depth in an image?

The number of bits used per pixel.

New cards
56

What does resolution refer to in an image?

The number of dots (pixels) per unit of distance, e.g., DPI (dots per inch).

New cards
57

What is the impact of higher color depth on an image?

It allows more colors to be represented, improving quality, but increases file size

New cards
58

What is the effect of higher resolution on an image?

It improves quality and allows enlargement without losing detail but increases file size.

New cards
59

What kind of information is stored in image metadata?

  • Color depth

  • resolution

  • geographical data

  • date created/modified

  • file size.

New cards
60

What type of data are sounds initially, and why?

Analogue, because they are a series of continuously varying vibrations

New cards
61

How is analogue sound converted for storage on a computer?

It is sampled at regular intervals and converted into binary.

New cards
62

What is sample rate?

The number of samples taken per second, measured in Hz.

New cards
63

What does 1 Hz represent in sound sampling?

One sample per second.

New cards
64

What is bit depth in sound storage?

The number of bits used to store each sample.

New cards
65

What factors determine the size of a sound file?

  • Sample rate

  • duration

  • bit depth.

New cards
66

What is lossy compression?

A method that removes data to reduce file size. The original file cannot be fully restored.

New cards
67

What is lossless compression?

A form of compression that encodes digital files without losing detail.

New cards
68

Why is lossy compression used for images/videos?

Reduces size without noticeable quality loss.

New cards
69

Can you restore a lossy compressed file?

No, some data is lost permanently.

New cards
70

How does lossless compression work?

Finds patterns and stores data efficiently, preserving the original.

New cards
71

Which files need lossless compression?

Text and audio, where exact data is needed.

New cards
72

Main difference between lossy and lossless?

Lossy removes data, lossless keeps all data intact.

New cards
73

Why is compression needed?

To reduce file sizes for faster transfers, saving space on devices with limited storage, and making data more efficient to handle

New cards
74

What are the trade-offs in compression?

Compression reduces file sizes but may affect quality, bandwidth usage, and processing power.

New cards
75

What are the key points of lossy compression?

Removes data, saves space, irreversible, used for sound, images, and video.

New cards
76

Why is lossless compression needed for some files?

Losing data can make files unreadable, like text documents or programs

New cards
77

What is lossless compression?

Reduces file size without losing data, allowing the original file to be exactly restored.

New cards
78

What are examples of lossless compression methods?

Dictionary coding and Run Length Encoding (RLE).

New cards
robot