Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
A multiplexer (MUX) selects one of N inputs to route to a single output, based on select lines that encode the chosen input. This item checks recognition of the relationship between the number of data inputs and the required number of select inputs.
Given Data / Assumptions:
Concept / Approach:
The number of select lines k must satisfy 2^k ≥ N. For N = 4, the minimum k is 2 because 2^2 = 4. Thus a 4-to-1 MUX uses two select inputs to choose among the four data inputs, often labeled S1 (MSB) and S0 (LSB).
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments