Difficulty: Easy
Correct Answer: binary states 1010 to 1111
Explanation:
Introduction / Context:Decade (BCD) counters represent decimal digits (0 through 9) in binary-coded decimal. After reaching 1001 (decimal 9), they reset to 0000 and do not pass through states representing 10–15 in pure binary. Recognizing the skipped range is essential in counter design and state-diagram logic.
Given Data / Assumptions:
Concept / Approach:Binary states from 1010 to 1111 correspond to decimal 10 through 15. In BCD counting, these states are inhibited or quickly forced back to 0000 via synchronous or asynchronous reset logic.
Step-by-Step Solution:
List states: 0000 (0) … 1001 (9) are valid.Next binary state 1010 (10) is not allowed; counter resets to 0000.Therefore, the counter skips 1010, 1011, 1100, 1101, 1110, 1111.Verification / Alternative check:BCD truth tables and 74xx decade counter datasheets (e.g., 7490/7493 derived designs with gating) confirm reset at 10.
Why Other Options Are Wrong:
1000–1111: includes valid 8 and 9.0000–0011: valid for 0–3.'1111 to higher': imprecise; not a contiguous skipped band in BCD.Common Pitfalls:
Confusing BCD counters with pure modulo-16 binary counters.Final Answer:
binary states 1010 to 1111
Discussion & Comments