Difficulty: Easy
Correct Answer: Be randomly accessed
Explanation:
Introduction / Context:
The term RAM stands for Random Access Memory. Unlike sequential-access media (tapes, some serial EEPROM streams), RAM allows direct access to any address in essentially constant time. This property defines how CPUs fetch instructions and data efficiently during program execution.
Given Data / Assumptions:
Concept / Approach:
The core advantage is addressable immediacy: processors can read or write any word without first scanning through earlier addresses. While RAM is also fast, “random access” is the defining advantage compared to sequential storage; speed is a beneficial consequence in most implementations but is not the naming rationale.
Step-by-Step Solution:
Identify what “random access” implies: O(1)-like access across addresses.Contrast with sequential access: must traverse data sequentially to reach target.Therefore, the principal advantage is the ability to be randomly accessed.
Verification / Alternative check:
Computer architecture texts emphasize that caches and main memory rely on random-access properties to supply instructions/data at arbitrary addresses rapidly, enabling general-purpose computing.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Be randomly accessed
Discussion & Comments