Difficulty: Easy
Correct Answer: the Q output follows the D input when EN is HIGH
Explanation:
Introduction / Context:A D latch is a level-sensitive storage element. When enabled, it is transparent and passes input changes to the output; when disabled, it holds the last captured value. Recognizing this behavior is critical when building registers, pipelines, and two-phase latch-based timing systems.
Given Data / Assumptions:
Concept / Approach:Transparency means that whenever EN is asserted HIGH, the internal gating path opens and Q immediately follows D (limited by propagation delay). When EN goes LOW, the path closes and the latch stores the last D value at that moment, maintaining Q until EN is asserted again.
Step-by-Step Solution:
1) Consider EN = HIGH: data path enabled → Q reflects D.2) Consider EN = LOW: data path disabled → Q holds previous state.3) Therefore, the correct summary is: Q follows D when EN is HIGH.4) Complement output, if present, is simply Q' = NOT(Q).Verification / Alternative check:Examine timing diagrams: with EN HIGH, toggling D produces corresponding toggles on Q after a small delay; with EN LOW, Q remains flat regardless of D activity.
Why Other Options Are Wrong:
Common Pitfalls:Confusing a D latch with an edge-triggered D flip-flop (which samples only at an edge), or misinterpreting EN polarity in specific vendor symbols.
Final Answer:the Q output follows the D input when EN is HIGH
Discussion & Comments