Difficulty: Easy
Correct Answer: RAM
Explanation:
Introduction / Context:
Computer systems use both volatile and nonvolatile memories. Volatile memories require continuous power to retain data and are typically used for working storage. Identifying which category a memory belongs to is crucial for system design and data integrity planning.
Given Data / Assumptions:
Concept / Approach:
RAM stands for Random Access Memory and is used for temporary, high-speed storage during program execution. Dynamic RAM needs refresh even while powered, and all RAM loses content on power loss, making it volatile by definition.
Step-by-Step Solution:
List categories: RAM (volatile) vs. ROM/Flash (nonvolatile).Determine which loses data without power: RAM.Therefore, select RAM as the volatile memory.
Verification / Alternative check:
System behavior during reboot confirms this: contents of main memory vanish, while firmware stored in ROM/Flash persists to boot the machine again.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
RAM
Discussion & Comments