Computer Science GCES AQA
-
Representing Algorithms Aqa4 主题
-
Efficiency Of Algorithms Aqa1 主题
-
Searching Algorithms Aqa3 主题
-
Sorting Algorithms Aqa3 主题
-
Data Types Aqa1 主题
-
Programming Concepts Aqa5 主题
-
Arithmetic Relational And Boolean Operations Aqa1 主题
-
Data Structures Aqa3 主题
-
String Manipulation Aqa1 主题
-
Random Number Generation Aqa1 主题
-
Structured Programming Aqa2 主题
-
Robust And Secure Programming Aqa4 主题
-
Number Bases Aqa2 主题
-
Converting Between Number Bases Aqa3 主题
-
Units Of Information Aqa9 主题
-
Hardware And Software Aqa4 主题
-
Boolean Logic Aqa3 主题
-
Programming Languages And Translators Aqa2 主题
-
Cpu Architecture Performance And Embedded Systems Aqa4 主题
-
Memory Aqa2 主题
-
Secondary Storage Aqa3 主题
-
Fundamentals Of Computer Networks Aqa8 主题
-
Fundamentals Of Cyber Security Aqa1 主题
-
Methods Of Preventing Cyber Security Threats Aqa1 主题
-
Relational Databases Aqa2 主题
-
Ethical Legal And Environmental Impacts Aqa2 主题
Ram And Rom Aqa
Exam code:8525
RAM
What is RAM?
-
RAM (Random Access Memory) is primary storage that is directly connected to the CPU and holds the data and instructions that are currently in use
-
RAM is volatile which means the contents of RAM are lost when the power is turned off
-
For the CPU to access the data and instructions they must be copied from secondary storage
-
RAM is very fast working memory, much faster than secondary storage
-
RAM is read/write which means data can be read from and written to
-
In comparison to ROM, it has a much larger capacity
ROM
What is ROM?
-
ROM (Read Only Memory) is primary storage that holds the first instructions a computer needs to start up (Bootstrap)
-
ROM contains the BIOS (Basic Input Output System)
-
ROM is a small memory chip located on the computers motherboard
-
ROM is fast memory, much faster than secondary storage but slower than RAM
-
ROM is non-volatile which means the contents of ROM are not lost when the power is turned off
-
ROM is read only which means data can only be read from
-
In comparison to RAM, it has a much smaller capacity
Differences between RAM & ROM
|
Feature |
RAM |
ROM |
|---|---|---|
|
Speed |
Very fast |
Fast (slower than RAM) |
|
Capacity |
Gigabytes (GB) |
Megabytes (MB) |
|
Stores |
Programs and data in use |
Bootstrap (start-up instructions) |
|
Read/Write |
Read & write |
Read only |
|
Volatile/Non-volatile |
Volatile |
Non-volatile |
Worked Example
State two reasons why computers have more RAM than cache memory [2]
Answer
-
RAM is cheaper (per byte than Cache)
-
The capacity of cache will usually be big enough to store currently open programs and data
Responses