NIMCET 2026 — Computer PYQ
NIMCET | Computer | 2026Which one of the following is correct order of memory types in increasing access speed (Slowest to Fastest)?
Choose the correct answer:
- A.
Hard Drive --> RAM --> Cache --> CPU Registers
(Correct Answer) - B.
RAM --> Hard Drive --> Cache --> CPU Registers
- C.
Cache --> RAM --> CPU Registers --> Hard Drive
- D.
Hard Drive --> Cache --> RAM --> CPU Registers
Hard Drive --> RAM --> Cache --> CPU Registers
Explanation
The correct option is 1. Hard Drive --> RAM --> Cache --> CPU Registers.
Explanation:
In computer architecture, the memory system is designed as a hierarchy. As we move from the bottom of the hierarchy to the top, the access speed increases, the cost per bit increases, and the storage capacity decreases.
Here is the breakdown of the memory types ordered from Slowest to Fastest:
Hard Drive (Slowest): This is secondary storage (magnetic disk or solid-state drive). It has the largest capacity but the slowest data access time because it is located furthest from the CPU core.
RAM (Random Access Memory): Also known as main memory. It holds the data and programs currently in use by the CPU. It is much faster than a hard drive but slower than cache memory.
Cache Memory: Built inside or very close to the CPU chip using Static RAM (SRAM). It stores frequently accessed data to reduce the average time to access memory from the RAM.
CPU Registers (Fastest): These are small internal storage locations located directly inside the CPU processor itself. They operate at the same speed as the processor clock, making them the fastest memory elements in a computer system.
Therefore, the correct increasing order of access speed (Slowest → Fastest) is:
Hard Drive→RAM→Cache→CPU Registers
