Difficulty: Easy
Correct Answer: flip-flops
Explanation:
Introduction / Context:Digital storage can be realized using many technologies: capacitor charge in DRAM, floating gates in flash, magnetic domains in disks/tape, or bistable electronic latches. This question focuses on the class that relies on latching circuits to hold binary states.
Given Data / Assumptions:
Concept / Approach:A flip-flop is an edge-triggered bistable device built from cross-coupled gates that stores one bit reliably until changed by a clocked input. Arrays of flip-flops form registers and small register files. In contrast, DRAM stores charge on capacitors (needs refreshing) and is not “latching” in the same sense; magnetic tape is a magnetic medium, not an electronic latch.
Step-by-Step Solution:
Identify that the storage mechanism is an electronic latch.Map that to flip-flops (or latches) as the canonical bistable storage elements.Eliminate technologies based on capacitors, floating gates, or magnetic domains.Select “flip-flops.”Verification / Alternative check:Textbook register-transfer-level diagrams show registers as banks of D flip-flops, clearly using latching circuits to hold state between clock edges.
Why Other Options Are Wrong:
Common Pitfalls:Conflating SRAM (static RAM) with discrete flip-flops; while SRAM cells are bistable, the question uses the phrase “electronic latching circuits” typically referring to flip-flops in logic design contexts.
Final Answer:flip-flops
Discussion & Comments