Difficulty: Easy
Correct Answer: high, reset
Explanation:
Introduction / Context:
The RS (Set-Reset) latch is a fundamental storage element in digital electronics. Understanding its truth table is essential for designing state machines and debouncing inputs. This question checks the effect of specific input combinations on the output Q.
Given Data / Assumptions:
Concept / Approach:
Use the canonical RS latch behavior: S drives Q high (set), R drives Q low (reset), and S = R = 0 holds the previous state. Map the stated input pairs to their outcomes on Q.
Step-by-Step Solution:
Verification / Alternative check:
Consult the RS truth table: S=1,R=0 → Q(next)=1; S=0,R=1 → Q(next)=0. This directly validates the result.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing level descriptions ('set' vs 'high') and assuming synchronous behavior where clocking is required. RS latch acts immediately on inputs.
Final Answer:
high, reset
Discussion & Comments