Difficulty: Easy
Correct Answer: Q output follows the input D when the enable is HIGH.
Explanation:
Introduction / Context:Gated D devices (often called D latches when level-controlled) are transparent while enabled and hold data when disabled. Being able to state their behavior succinctly is essential when building registers, FIFOs, or two-phase latch pipelines.
Given Data / Assumptions:
Concept / Approach:When EN is HIGH, the internal gating opens, allowing D to propagate to Q (subject to propagation delay). When EN goes LOW, the path is blocked and Q retains the last value sampled just before disabling. This is the hallmark of a level-sensitive D storage element.
Step-by-Step Solution:
1) EN = HIGH → device transparent → Q ≈ D.2) EN = LOW → device opaque → Q holds its previous value.3) Therefore the correct statement is: Q follows D when EN is HIGH.4) Complement output, if present, remains Q' = NOT(Q).Verification / Alternative check:Timing diagrams show Q changing only during intervals where EN is asserted; otherwise it remains constant despite D activity.
Why Other Options Are Wrong:
Common Pitfalls:Confusing a gated D latch with an edge-triggered D flip-flop, which updates only at a clock edge rather than during the entire enable interval.
Final Answer:Q output follows the input D when the enable is HIGH.
Discussion & Comments