Difficulty: Easy
Correct Answer: 00
Explanation:
Introduction / Context:
Cascading JK flip-flops with J = K = 1 creates a toggle chain in which each stage divides the previous stage’s frequency by 2. Two such stages form a 2-bit ripple counter that cycles through four states (00 → 01 → 10 → 11 → 00 …).
Given Data / Assumptions:
Concept / Approach:
A 2-bit counter has a modulus of 4. After exactly four input clock pulses, the counter completes one full cycle and returns to its initial state. Therefore, the state after four pulses is 00 again.
Step-by-Step Solution:
Verification / Alternative check:
Think in modulo arithmetic: count value N advances by 1 each pulse modulo 4. After 4 increments, N ≡ 0 (mod 4), which maps back to 00.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
00
Discussion & Comments