Difficulty: Easy
Correct Answer: 1010
Explanation:
Introduction / Context:
The terminal count of a truncated counter is the last valid state before the counter returns to its initial state. For MOD-N counters that begin at 0, the terminal count is N − 1. Converting this decimal value into binary yields the specific Q output pattern observed just prior to reset.
Given Data / Assumptions:
Concept / Approach:
Compute N − 1 and convert to binary. For N = 11, N − 1 = 10. Express 10 in 4-bit binary to match the minimal number of bits required to represent the state in a typical circuit using four flip-flops (truncated from the natural MOD-16).
Step-by-Step Solution:
Verification / Alternative check:
Enumerate the sequence briefly: … 1000₂ (8), 1001₂ (9), 1010₂ (10), then reset to 0000₂. This matches the definition of terminal count for MOD-11 starting at 0.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1010
Discussion & Comments