Difficulty: Easy
Correct Answer: flip-flop
Explanation:
Introduction / Context:
SRAM and DRAM store bits differently. Understanding the SRAM storage element explains why SRAM is fast and does not require refresh, yet is less dense than DRAM. This is crucial for cache memory design and performance analysis.
Given Data / Assumptions:
Concept / Approach:
An SRAM bit cell is essentially a tiny flip-flop (often implemented with six transistors in CMOS: two cross-coupled inverters and two access transistors). It stays in one of two stable states, representing 0 or 1, while enabled by word lines during read/write operations.
Step-by-Step Solution:
Verification / Alternative check:
Contrast with DRAM: a capacitor plus a transistor stores charge temporarily and needs refresh. With SRAM, the latching action holds the state indefinitely (under power).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
flip-flop
Discussion & Comments