Difficulty: Easy
Correct Answer: Access time is the same for each memory location
Explanation:
Introduction / Context:
The defining characteristic of Random Access Memory (RAM) is that any location can be accessed in essentially constant time relative to any other location, subject to timing constraints. This feature distinguishes RAM from sequential-access devices like tape drives.
Given Data / Assumptions:
Concept / Approach:
“Random access” refers to uniform-time addressing, not to volatility or write endurance. In RAM, decoding logic selects rows/columns quickly, enabling direct reads/writes at arbitrary addresses. Consequently, CPUs and DMA engines rely on RAM for rapid, nonsequential instruction and data access.
Step-by-Step Solution:
Define random access: time to access is independent of address sequence.Compare with sequential access: must pass through preceding data.Therefore, the best description is that access time is the same for each location.
Verification / Alternative check:
SRAM timing diagrams and DRAM controller schedules show consistent per-access timing envelopes regardless of address (ignoring caching/banking subtleties), validating the random-access property.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Access time is the same for each memory location
Discussion & Comments