Difficulty: Easy
Correct Answer: the Gate Enable is HIGH and the S and R inputs are both LOW
Explanation:
Introduction / Context:
A gated S-R latch adds an enable (gate) control to the basic S-R latch so that input commands are effective only when the gate is asserted. Knowing the exact condition that causes a hold (no change) while enabled helps avoid accidental state changes and race-through issues in combinational-to-sequential interfaces.
Given Data / Assumptions:
Concept / Approach:
The gated S-R truth table typically includes: E=1, S=0, R=0 → no change; E=1, S=1, R=0 → set; E=1, S=0, R=1 → reset; E=1, S=1, R=1 → invalid; and for E=0 the latch ignores S and R and simply holds. The question explicitly focuses on the hold condition when the device is enabled, so we select E=1 with S=0 and R=0.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments