Q26.Marks: +2.0UGC NET Paper 2: Computer Science 11 March 2023
Which one of the following types of memory is fastest
1.Cache Memory
2.Register Memory✓ Correct
3.Main Memory
4.Secondary Memory
Solution
The correct answer is Register Memory
Key Points
Register Memory: Register memory is a tiny unit of memory that is part of the CPU (central processing unit).
It is the fastest and smallest form of memory.
Because of its speed, it's used to store and quickly access the data that the CPU is currently processing.
Register memory is significantly smaller in comparison to Cache, Main Memory or Secondary Memory due to cost and technology limitations.
Additional Information
Cache Memory: Cache memory is a small, fast memory that is used to store frequently accessed data by the processor. It is faster than Main Memory (RAM), but slower than Register Memory. Cache memory is used to efficiently increase the speed of data access by the processor by keeping a copy of the most frequently used data from the Main Memory. There are typically multiple levels of cache (L1, L2, L3) with different speeds and sizes.
Main Memory: Often referred to as RAM (Random Access Memory), Main Memory is a form of computer memory that can be read from and written to by the processor. It is much larger than cache memory or register memory but it is also slower. The operating system, application programs, and data in current use are kept in RAM so that the CPU can quickly reach them.
Secondary Memory: Also known as storage memory, this includes devices like hard disks, solid state drives, and other forms of storage that are not directly accessible by the CPU (they require I/O operations for access). Secondary memory has the highest capacity and is used to store a large amount of data and information permanently, even without power. It is the slowest type of memory discussed here, but it's also typically the least expensive per unit of storage and is non-volatile, meaning it retains data even when powered off.