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:
Construct seconds: MOD-10 (ones) cascaded into MOD-6 (tens) → counts 00–59.Reuse the same pair for minutes: MOD-10 + MOD-6 → 00–59.Use MOD-12 for hours to cycle 1–12 (or 00–11) with appropriate display mapping.Therefore the necessary primitive moduli are MOD-10, MOD-6, and MOD-12.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