Difficulty: Easy
Correct Answer: JK flip-flop accepts both inputs 1
Explanation:
Introduction / Context:
SR and JK flip-flops are foundational sequential elements. The SR latch/flip-flop has an invalid input condition when S=R=1. The JK flip-flop modifies the topology to eliminate this invalid state and provide a predictable toggle behavior when both inputs are asserted.
Given Data / Assumptions:
Concept / Approach:
In a JK flip-flop, when J=K=1 at the active clock edge, the output toggles (Q(next) = NOT Q). This replaces the SR undefined condition with a well-defined transition, thanks to internal feedback and gating arrangements.
Step-by-Step Solution:
Verification / Alternative check:
JK truth tables show four modes: hold (00), reset (01), set (10), toggle (11). This confirms the resolution of the SR forbid state.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing level-sensitive latches with edge-triggered flip-flops, and thinking feedback alone defines the difference rather than the resulting toggle mode.
Final Answer:
JK flip-flop accepts both inputs 1
Discussion & Comments