Primary memory

From Computer Science Wiki
Revision as of 10:30, 25 August 2016 by Mr. MacKenty (talk | contribs) (Created page with "frame|right|This is a basic concept in computer science Primary Memory The primary memory stores the program instructions and the data in binary machine...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This is a basic concept in computer science

Primary Memory

The primary memory stores the program instructions and the data in binary machine code. The Control Unit deals with the instructions and the Arithmetic and Logic unit handles calculations and comparisons with the data. Data and instructions are moved by buses.

There are two types of memory in primary memory (also known as the Immediate Access Store ) of the computer, RAM and ROM:

  • RAM is Random Access Memory which loses its contents when the computer is switched off (it is volatile ). This memory can be written to, instructions and data can be loaded into it.
  • ROM , or Read Only Memory is non-volatile and is used to store programs permanently (the start-up or " boot " instructions, for example), the computer cannot store anything in this type of memory.

When the programs and data files (known as the software ) are not in RAM, they are stored on secondary memory (also known as backing store ) such as tapes or discs. The tape or disc drives and any input and output devices connected to the CPU are known collectively as peripherals[1] .


Other resources[edit]

Do you understand this topic?[edit]

  • Identify the need for persistent storage

Do you have an advanced understanding about this topic?[edit]

  • Is a disk-based swap file the same thing as persistent storage?

References[edit]