Difficulty: Easy
Correct Answer: 125
Explanation:
Introduction / Context:
Cascading digital counters multiplies their individual moduli. This question checks whether you can determine the total counting range when multiple modulus-N stages are chained, a common design in timing dividers and sequence generators.
Given Data / Assumptions:
Concept / Approach:
When counters are cascaded such that one stage advances the next on overflow, the total modulus equals the product of the individual moduli. Thus, MOD-A followed by MOD-B yields MOD-(A*B); extend this by multiplication for more stages.
Step-by-Step Solution:
Verification / Alternative check:
List the ranges: the least significant stage has 5 states; for each of those, the second has 5; for each pair, the third has 5. That is 5 * 5 * 5 = 125 unique combinations before repeating.
Why Other Options Are Wrong:
Common Pitfalls:
Adding moduli instead of multiplying; forgetting that each additional cascaded stage multiplies total states.
Final Answer:
125
Discussion & Comments