Difficulty: Easy
Correct Answer: 5
Explanation:
Introduction / Context:
Gate-time generation is central to frequency counters. If the system clock is 100 kHz, the designer must divide it down to 1 Hz to define a 1-second measurement interval. Decade counters are a common HDL-friendly choice for divisions by powers of ten.
Given Data / Assumptions:
Concept / Approach:
To go from 100,000 Hz to 1 Hz requires an overall division of 100,000. Using only /10 counters, we need N such that 10^N = 100,000.
Step-by-Step Solution:
Verification / Alternative check:
Simulation: observe one output rising edge per 100,000 input cycles; period = 1 s at 100 kHz input.
Why Other Options Are Wrong:
Common Pitfalls:
Mixing decimal and binary divisors; be consistent with chosen counter modulus.
Final Answer:
5
Discussion & Comments