Difficulty: Easy
Correct Answer: MOD-6, MOD-12, and MOD-10 counters
Explanation:
Introduction / Context:
A digital clock divides time into seconds, minutes, and hours. Practical hardware uses cascaded modulus counters to realize the decimal-looking outputs needed for display. Understanding which moduli are required keeps the design minimal and modular, simplifying debugging and reuse.
Given Data / Assumptions:
Concept / Approach:
To get 0–59, hardware commonly uses a MOD-10 counter for the ones digit (0–9) and a MOD-6 counter for the tens digit (0–5). Chaining these two yields MOD-60. For hours in a 12-hour clock, a MOD-12 counter is used (often realized as a decade counter with additional logic or a dedicated MOD-12). Thus, the fundamental building blocks are MOD-10, MOD-6, and MOD-12.
Step-by-Step Solution:
Verification / Alternative check:
Many textbooks and lab kits implement seconds/minutes using a 7490/4510 decade counter feeding a 7492/4511 MOD-6 stage; hours use a MOD-12 realized with gating or a dedicated counter, confirming the chosen set.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
MOD-6, MOD-12, and MOD-10 counters
Discussion & Comments