Difficulty: Medium
Correct Answer: 12 to 1, 11 to 3, 8 to 2
Explanation:
Introduction / Context:
The 7493 is a 4-bit ripple counter with separate divide-by-2 and divide-by-8 sections. By wiring its outputs back to the asynchronous reset inputs, you can truncate the natural modulus-16 sequence to achieve a desired modulus such as 12 (counts 0 through 11). Correct pin connections are crucial to reset the counter exactly at the intended terminal count.
Given Data / Assumptions:
Concept / Approach:
First, connect QA (pin 12) to CLK B (pin 1) so the higher stages count at QA/2, creating a standard 4-bit chain. To force modulus 12, detect count 12 (QD=1 and QC=1) and feed those signals to the two reset pins so that when the state reaches 1100, the counter asynchronously clears to 0000 on the very next instant.
Step-by-Step Solution:
Verification / Alternative check:
List the count sequence and confirm that upon reaching 1100 both reset pins go HIGH, instantly clearing the counter to 0000, yielding exactly 12 distinct states per cycle.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting both reset inputs must be asserted together; mixing up QC and QB pin numbers; or omitting the QA→CLK B link so upper stages never count.
Final Answer:
12 to 1, 11 to 3, 8 to 2
Discussion & Comments