Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:A multiplexer (MUX) is a fundamental component that funnels one of many inputs to a single output. Understanding that the select lines act like a binary address to choose the active input is essential for designing bus interfaces, data acquisition systems, and communication paths.
Given Data / Assumptions:
Concept / Approach:For a 2^n-to-1 MUX, the n select lines encode a number from 0 to 2^n - 1. That code chooses the corresponding input channel. This behavior holds across digital and analog multiplexers; enable simply allows or disables the output drive.
Step-by-Step Solution:
Interpret select lines as a binary index.Map the index to the chosen input (e.g., S = 011 selects I3).Output reflects the chosen input as long as the device is enabled.Therefore, the statement is correct.Verification / Alternative check:Examine a timing diagram for a 4-to-1 MUX. Changing select S1 S0 from 00 to 01 immediately routes I1 to the output. Oscilloscope measurements confirm the selection behavior.
Why Other Options Are Wrong:
Common Pitfalls:Confusing enable with selection; miswiring select order (endianness); ignoring MUX propagation delay and bandwidth limits.
Final Answer:Correct
Discussion & Comments