Difficulty: Easy
Correct Answer: 64 ms
Explanation:
Introduction / Context:
DRAM stores each bit as charge on a tiny capacitor, which leaks over time. To prevent data loss, each row must be periodically refreshed (read and rewritten). Knowing the customary refresh period is essential for memory controller design and performance analysis.
Given Data / Assumptions:
Concept / Approach:
The refresh interval defines how often all rows must be accessed to maintain charge. Controllers schedule refresh commands such that every row is refreshed at least once during the specified 64 ms window, balancing data integrity and bandwidth.
Step-by-Step Solution:
Identify the standard window: 64 ms for typical operating temperatures.Map rows to refresh cycles: e.g., 8K rows → 8K refreshes per 64 ms.Controller issues periodic refresh at intervals (for 8K rows, ~7.8 µs between refreshes).
Verification / Alternative check:
JEDEC specifications and device datasheets list tREFI (refresh interval) such that all rows are refreshed within 64 ms under normal temperature ranges, confirming the common value.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
64 ms
Discussion & Comments