Difficulty: Easy
Correct Answer: S = 0, R = 0
Explanation:
Introduction / Context:
The simplest memory element in digital logic is the S-R latch constructed from two cross-coupled NOR gates. Knowing which input combinations set, reset, or hold the state is essential for analyzing asynchronous hazards and for building higher-level sequential elements.
Given Data / Assumptions:
Concept / Approach:
For a NOR-latch, active-HIGH S forces Q = 1 (set), and active-HIGH R forces Q = 0 (reset). When both S and R are LOW, neither gate’s direct input asserts, so feedback maintains the existing state. If both S and R are HIGH simultaneously, both outputs are driven LOW, producing an invalid/forbidden condition because Q and Q’ are no longer complements after inputs return LOW.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments