What is memory and its types?
What is Memory explain its types?
Memory is the process of taking information from the world around us, acting on it, storing it and later remembering that information, sometimes many years later. Human memory is often compared to a computer memory system or filing cabinet.
OR
Memory is just like the human brain. It is used to store data and instructions. Computer memory.
The storage space in the computer where the data is to be processed and the instructions are required.
Processing is stored. Memory is divided into a large number of small parts called cells. each one
Location or cell has a unique address that varies from zero to memory size minus one. of the
For example, if a computer has 64k words, then this memory unit has 64 * 1024 = 65536 memory.
Locations The address of these locations varies from 0 to 65535.
There are basically three types of memory.
- Cache memory
- Primary memory / Main memory
- Secondary memory
What is Cache memory?
Cache memory is a very fast semiconductor memory that can speed up the CPU. It works as one.
Buffer between CPU and main memory. It is used to store data and these parts of the program.
Which are often used by the CPU. Data and program parts are transferred from disk.
To cache memory through the operating system, from where the CPU can access them.
What is primary memory?
Primary storage (also called main memory) is a component of a computer that contains the data, programs, and instructions currently in use. Basic storage is located on the motherboard. As a result, data can be read and written much faster than primary storage.
Example of main memory
Example of primary memory are RAM - Random Access Memory. ROM - Read Only Memory.
Example of primary memory are RAM - Random Access Memory. ROM - Read Only Memory.
What is Secondary memory?
Secondary memory is also called external memory and refers to the various storage media on which a computer can store data and programs. Secondary storage media can be fixed or removable. Fixed storage media is an internal storage medium similar to a hard disk that is fixed inside a computer.
Secondary memory consists of all permanent or persistent storage devices, such as read-only memory (ROM), flash drives, hard disk drives (HDD), magnetic tapes and other types of internal/external storage media.
Comments