Difficulty: Easy
Correct Answer: MOD 16
Explanation:
Introduction / Context:
This question checks your understanding of how a multiplexer performs parallel-to-serial conversion and how many select states are required to visit each input exactly once per frame. Correctly choosing the driving counter ensures that every parallel bit is sampled in order.
Given Data / Assumptions:
Concept / Approach:
A 16:1 MUX requires 4 select lines to address inputs 0 through 15. To sweep all inputs cyclically, the select lines must iterate through 16 unique states. Therefore, a 4-bit counter that counts 0..15 (a modulus-16 counter) is required.
Step-by-Step Solution:
Verification / Alternative check:
Any lesser modulus (for example, 8 or 4) would not reach all inputs; any greater modulus would repeat or produce unused states. Thus MOD-16 is both necessary and sufficient.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
MOD 16
Discussion & Comments