Difficulty: Easy
Correct Answer: S = 1, R = 0
Explanation:
Introduction / Context:The classic S–R latch built from cross-coupled NOR gates has two control inputs: Set (S) and Reset (R). Understanding the correspondence between input assertions and output states is essential for correct design and debugging.
Given Data / Assumptions:
Concept / Approach:For NOR-gate implementation, an asserted input is logic 1. Driving S = 1 forces Q = 1 regardless of feedback, provided R = 0. Conversely, R = 1 forces Q = 0. With both low (S = 0, R = 0), the latch holds its previous state. S = R = 1 is invalid for a NOR latch.
Step-by-Step Solution:
Desired outputs: Q = 1, Q̄ = 0.To set Q = 1 in a NOR latch, assert S = 1 while keeping R = 0.After the set action, S can be returned to 0 to hold the state.Therefore, the appropriate input combination is S = 1, R = 0.Verification / Alternative check:Truth summary: S,R = 1,0 → set; 0,1 → reset; 0,0 → hold; 1,1 → invalid. The given outputs correspond to the set line asserted.
Why Other Options Are Wrong:
S = 0, R = 1: This would reset, making Q = 0.S = 0, R = 0: Hold previous state; does not guarantee Q = 1.S = 1, R = 1: Invalid for a NOR S–R latch (both outputs forced low initially).Common Pitfalls:Confusing NOR- and NAND-based latch conventions; forgetting that S = R = 1 (NOR) is invalid; assuming hold rather than considering the need to assert S to set.
Final Answer:S = 1, R = 0
Discussion & Comments