Difficulty: Easy
Correct Answer: Flash
Explanation:
Introduction / Context:ADC architectures vary in whether they need a conversion clock. Some rely on iterative or oversampling sequences driven by clocks, while others operate combinationally. Understanding these differences helps in system timing design and clock-domain planning.
Given Data / Assumptions:
Concept / Approach:Flash ADCs use a resistor ladder to create many reference thresholds and simultaneously compare the input to all thresholds. The resulting thermometer code is encoded to binary. Because there is no step-by-step search or integration period, a conversion clock is not required for the conversion itself (though clocks may be used for output latching or system interfacing).
Step-by-Step Solution:
Identify architectures: flash (parallel), SAR (binary search), dual-slope (integrating), sigma-delta (oversampling).Determine which needs no iterative timing: flash operates in one parallel decision.Exclude others: SAR and dual-slope inherently require clocked sequencing.Choose “Flash” as the correct answer.Verification / Alternative check:Review timing diagrams: SAR shows multiple comparison cycles per sample; dual-slope shows integrate and deintegrate phases. Flash shows a static comparison path with optional latch timing only.
Why Other Options Are Wrong:
Dual: shorthand for dual-slope integrating ADCs; requires precise clocking.Bipolar: not an ADC architecture name; sometimes refers to input polarity handling.Actuator: not an ADC at all.Common Pitfalls:Confusing the presence of output latches or interface clocks with the conversion mechanism; assuming “fast” always means “clocked.”
Final Answer:Flash
Discussion & Comments