GCSE OCR Computer Science - Memory & Storage

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/41

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

42 Terms

1
New cards

RAM (Random Access Memory)

Volatile memory which can be read to and written from. It stores all data, files and programs currently in use.

2
New cards

Virtual Memory

An area of secondary storage used as extra RAM

3
New cards

Why does using virtual memory make a computer slow to respond?

  • The CPU has to read data in virtual memory and move it back into RAM

  • Secondary storage is much slower than RAM

4
New cards

ROM (Read Only Memory)

Non-volatile memory which can only be read from.

5
New cards

What does ROM contain?

The BIOS (Basic Input Output System) which is the instructions required for the computer to boot up.

6
New cards

Primary Storage

Memory areas that can be accessed very quickly by the CPU and are typically volatile.

7
New cards

Secondary Storage

Non-volatile storage that stores all data not in use and is much slower than primary storage.

8
New cards

How does a HDD (Hard Disk Drive) work?

  • Data is stored magnetically on small areas of a spinning magnetised metal disk platter’s circular tracks

  • A moving arm can access this data and read and write

9
New cards

Advantages of HDDs in comparison to SSDs (3)

  • Higher storage capacity

  • Cheaper

  • Longer read/write life

10
New cards

Advantages of SSDs in comparison to HDDs (4)

  • Faster access times

  • No moving parts so more durable and portable

  • Don’t make noise

  • Don’t need defragmenting

11
New cards

How does an optical disk work?

  • Data is stored on a spinning disk as ā€˜pits and lands’

  • A laser beam shines onto the surface

  • A sensor detects how it shines back, determining if it was a pit or a land

12
New cards

How does flash memory work?

Data is stored in tiny ā€˜floating-gate’ transistors.

13
New cards

Advantages of Optical Disk

  • Very cheap

  • Portable

  • Take up less physical space

14
New cards

Disadvantages of Optical Disk

  • Slow read/write speed

  • Low capacity

  • Easily damaged (scratched)

15
New cards

Why do computers store data in binary?

Computers consist of transistors which only have two values (on or off) so data must be processed in this way.

16
New cards

Units of data

Bit, nibble, Byte, Kilobyte, Megabyte, Gigabyte, Terabyte, Petabyte

17
New cards

Nibble

4 bits

18
New cards

Byte

8 bits

19
New cards

Binary

(base-2) Uses 2 different digits (1 and 0)

20
New cards

Hexadecimal

(base-16) Uses 16 different digits (0-9 & A-F)

21
New cards

How to convert Hex to Denary?

  • Multiply the first digit by 16

  • Add the second digit

22
New cards

How to convert Denary to Hex?

  • Divide by 16

  • Add on the remainder

23
New cards

How to convert Binary to Hex?

  • Divide the binary number into nibbles

  • Convert each nibble to it’s corresponding value

24
New cards

How to convert Hex to Binary?

  • Find the denary value of each nibble

  • Find the binary value of each denary number and put them together

25
New cards

Character Set

A collection of characters the computer recognises through binary representation.

26
New cards

How many bits does ASCII use?

8 bits (1 byte)

27
New cards

How many characters are available with ASCII?

256

28
New cards

How many bits does Unicode use?

16 bits (2 bytes)

29
New cards

How many characters are available with Unicode?

65536

30
New cards

Colour depth

The number of different colours which can be used in an image file.

31
New cards

Resolution

The number of pixels in an image (width x height)

32
New cards

Metadata

Data about the file itself

33
New cards

Examples of metadata

Format, heigh, width, colour depth, resolution

34
New cards

File size (Image) =

colour depth x resolution

35
New cards

How can analogue signals be converted to digital?

The amplitude of the analogue sound wave is sampled at regular intervals

36
New cards

Sample rate

(Hz) Samples taken a second

37
New cards

Bit depth

The number of bits available for each sample

38
New cards

File Size (sound) =

Sample Rate (Hz) x bit depth x duration (s)

39
New cards

Compression

Decreasing the file size whilst trying to keep the file true to the original.

40
New cards

Lossy Compression

Compression that permanently removes data from the file, reducing the overall quality but greatly reducing file size.

41
New cards

Lossless Compression

Compression that temporarily removes data from the file with no reduction in quality, but only a slight reduction in file size.

42
New cards

Why can’t lossy compression be used on text or program files?

They need to retain all the data from their original files.