Difficulty: Easy
Correct Answer: HIGH
Explanation:
Introduction / Context:
An S–R (Set–Reset) latch or flip-flop is among the most basic storage elements in digital electronics. Understanding which input level causes a state change is foundational for debugging larger sequential circuits and for interpreting truth tables of derived devices such as JK and D flip-flops.
Given Data / Assumptions:
Concept / Approach:
With active-HIGH inputs, driving S to a HIGH forces Q to 1 (SET), and driving R to a HIGH forces Q to 0 (RESET). When both inputs are LOW simultaneously, the latch holds its previous state. The combination S = 1 and R = 1 is generally invalid for level-sensitive SR latches (or mapped to toggle/hold in other families), but the basic rule remains: a HIGH on the respective input asserts that function.
Step-by-Step Solution:
Verification / Alternative check:
Consult any SR truth table: S R = 1 0 → Qnext = 1; S R = 0 1 → Qnext = 0; S R = 0 0 → hold. This matches bench behavior on NOR- or NAND-realizations under active-HIGH conventions (with bubbles indicating inversion if active-LOW).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
HIGH
Discussion & Comments