Difficulty: Easy
Correct Answer: DRAM is a type of main memory that stores each bit as an electric charge in a tiny capacitor that must be periodically refreshed
Explanation:
Introduction / Context:
Dynamic Random Access Memory, or DRAM, is the most common technology used for main memory in general purpose computers. Understanding how DRAM stores data at a physical level helps explain why it is relatively cheap, dense and also why it needs periodic refreshing. Exam questions often test both the expansion of the acronym and the basic storage mechanism.
Given Data / Assumptions:
Concept / Approach:
In DRAM, each bit of data is stored as an electric charge on a tiny capacitor inside the memory cell. A charged capacitor typically represents a logical one, and a discharged or low charge level represents a logical zero. Because the charge leaks away over time, DRAM cells must be periodically refreshed by reading and rewriting the stored values. This design allows very high density and low cost per bit but introduces the need for refresh circuits and timing.
Step-by-Step Solution:
Step 1: Recognize that the word Dynamic in DRAM refers to the fact that the stored information decays and must be refreshed regularly.
Step 2: In a DRAM cell, a transistor controls access to a capacitor. When writing, the capacitor is charged or discharged to represent one or zero.
Step 3: When reading, the sense amplifier detects whether the capacitor has sufficient charge and then restores the cell to its original or updated value.
Step 4: Because the capacitors are small and leak charge, the memory controller periodically cycles through rows of cells to refresh them.
Step 5: This behaviour matches the description of storing bits as electric charge in capacitors, not as magnetic or optical patterns.
Verification / Alternative check:
Hardware design references and memory technology overviews clearly state that DRAM uses capacitors for bit storage and requires refresh, while Static RAM (SRAM) uses flip flops without refresh. Optical disks and magnetic tapes are discussed under secondary storage technologies and not under DRAM.
Why Other Options Are Wrong:
Optical storage uses pits and lands on disk surfaces with lasers, not capacitors in integrated circuits.
Magnetic tape uses magnetization on a strip and is sequential access secondary storage, not random access main memory.
Flip flop based memory that does not need refresh is Static RAM, not DRAM.
Common Pitfalls:
Students sometimes confuse DRAM with SRAM because both provide random access, but they differ in implementation and speed. Another pitfall is to think that refresh is a software responsibility; in reality, hardware memory controllers handle DRAM refresh transparently to software in most systems.
Final Answer:
DRAM is Dynamic Random Access Memory, a type of main memory in which each bit is stored as an electric charge on a tiny capacitor that must be periodically refreshed to preserve the data.
Discussion & Comments