Difficulty: Easy
Correct Answer: The J-K flip-flop has a toggle state.
Explanation:
Introduction / Context:The S-R latch has an invalid input condition when both S and R are HIGH simultaneously. The J-K flip-flop extends this behavior to allow a defined toggle action when both inputs are asserted, making it more versatile.
Given Data / Assumptions:
Concept / Approach:The toggle state enables divide-by-2 counters and flexible state machines without additional gating to avoid illegal states, simplifying designs.
Step-by-Step Solution:
1) Map inputs: J=1, K=0 → set; J=0, K=1 → reset; J=K=0 → hold; J=K=1 → toggle.2) Compare to S-R: S=R=1 is undefined; hardware must prevent it.3) Conclude advantage: J-K provides a clean, useful toggle mode.Verification / Alternative check:Construct a divide-by-2 using a single J-K with J=K=1; observe Q toggling each clock.
Why Other Options Are Wrong:
Common Pitfalls:Assuming J-K eliminates all illegal transitions automatically; race-around must be mitigated by edge triggering or master-slave design.
Final Answer:The J-K flip-flop has a toggle state.
Discussion & Comments