Difficulty: Easy
Correct Answer: S2 = 0, S1 = 1, S0 = 1
Explanation:
Introduction / Context:
The 74151 is an 8-to-1 multiplexer with three select inputs choosing one of eight data inputs I0–I7. Understanding how the select lines encode the chosen channel is fundamental to using multiplexers in datapaths and control logic.
Given Data / Assumptions:
Concept / Approach:
With binary encoding, the select code corresponds to the index of the input: code 000 selects I0, 001 selects I1, …, 011 selects I3, up to 111 selecting I7. Therefore, to route I3 to the output, the select inputs must represent binary 3, namely 0 1 1 on S2 S1 S0 respectively.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments