SLR 1.2 Memory Flashcards Preview

GCSE Computer Science > SLR 1.2 Memory > Flashcards

Flashcards in SLR 1.2 Memory Deck (21)
Loading flashcards...
1
Q

What does RAM stand for?

A

Random Access Memory

2
Q

What is RAM?

A

“Volatile primary memory, often referred to as Main Memory. RAM typically contains the Operating System, programs in use and the data those programs are using while the computer is running.”

3
Q

What does ROM stand for?

A

Read Only Memory

4
Q

What is ROM?

A

“Memory for which the contents may be read but cannot be written to by the computer system. Software in ROM is fixed during manufacturing. It typically holds system boot up instructions. ROM is non-volatile.”

5
Q

What is virtual memory?

A

“Used when sufficient main memory, i.e. RAM, is not available. Part of a disk drive (Hard Disk Drive or other secondary storage e.g. Solid State Drive) is allocated to be used as if it were main memory. Instructions and data will usually be transferred back into RAM before they are used.”

6
Q

What type memory is usually referred to as “main memory”?

A

Random Access Memory

7
Q

What is primary storage?

A

Primary storage is memory that can be accessed directly by the Central Processing Unit. Random Access Memory, Read Only Memory, registers (e.g. Program Counter, Memory Address Register, Memory Data Register) and Cache are considered to be primary memory.

8
Q

What is secondary storage?

A

Secondary storage is storage which the Central Processing Unit cannot access directly and is non-volatile. Example include CDs, DVDs, magnetic tape, Hard Disk Drives (HDDs), USB sticks, Solid State Drives (SSDs). Note that ROM is **NOT** secondary storage since it is accessed directly by the CPU.

9
Q

What does BIOS stand for?

A

Basic Input Output System

10
Q

What does BIOS do?

A

BIOS is part of the operating system that handles the input and output of the computer. It enables the operating system to use the particular features of the hardware being used. BIOS is called at the start of the ‘power-up’ routine when a computer is first powered on.

11
Q

Where is BIOS stored?

A

BIOS is stored in Read Only Memory (ROM)

12
Q

What does POST stand for?

A

Power On Self-Test

13
Q

What does POST do?

A

Power On Self-Test checks hardware such as keyboard, Random Access Memory, disk drives etc. are working correctly. It is called by BIOS on starting up the computer.

14
Q

What is a device driver?

A

A computer program that sits between the operating system of a computer and a particular type of device that is attached to a computer e.g. a printer. The driver’s job is to allow the operating system and device to communicate. Drivers are therefore specific to particular devices (e.g. an Epson E300X ink jet printer) and operating system (e.g. Windows 10)

15
Q

Describe the features of RAM

A

MAIN FEATURES

  • Volatile
  • Read and write

Secondary features

  • Removable
  • Cheap
16
Q

Describe the features of ROM

A

MAIN FEATURES

  • Non-volatile
  • Read only

Secondary features

  • Small amount of storage
  • Contains firmware and bootstrap
  • Soldered to motherboard
  • Expensive
17
Q

Describe the features of flash storage

A

MAIN FEATURES

  • Non-volatile
  • Read and write

Secondary features

  • Smaller capacity than hard drive
  • Solid state
18
Q

Give examples of uses of flash storage

A
  • Used for BIOS - Used as permanent storage in portable devices
19
Q

Give two differences between RAM and ROM (4 mark answer required)

A

RAM is volatile (1 mark) ROM is non-volatile (1 mark)

ROM is read only (1 mark) RAM is read and write (1 mark)

20
Q

What does volatlie mean?

A

The data stored in volatile memory is lost when the power is turned off.

21
Q

What is bootstrap?

A

The very first instructions that the computer loads on start-up