Difficulty: Easy
Correct Answer: RAM
Explanation:
Introduction / Context:
The memory/storage hierarchy prioritizes speed at the top (CPU caches, RAM) and capacity at the bottom (disks, optical). Recognizing which layer is fastest explains why programs and data are loaded into RAM for execution.
Given Data / Assumptions:
Concept / Approach:
RAM operates at nanosecond-scale latency and very high bandwidth, orders of magnitude faster than magnetic or optical storage with millisecond-scale seeks. ROM devices are not used as primary working memory and usually have slower interfaces than main memory.
Step-by-Step Solution:
Verification / Alternative check:
Benchmarks consistently show memory bandwidth in multi-GB/s, while even modern disks/opticals are far slower. SSDs narrow the gap but still trail RAM significantly.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming flash-based storage equals RAM speeds; they remain slower in both latency and sustained bandwidth.
Final Answer:
RAM
Discussion & Comments