Difficulty: Easy
Correct Answer: multiplexer
Explanation:
Introduction / Context:Routing signals efficiently is central to digital system design. When multiple sources must share a single destination channel, we use a selection mechanism governed by control lines to pick exactly one source at a time.
Given Data / Assumptions:
Concept / Approach:A multiplexer (MUX) is a combinational device that implements Y = D_k where k is chosen by the select inputs. It is the many-to-one counterpart of a demultiplexer (one-to-many). Encoders and decoders map between one-hot and binary codes rather than directly forwarding arbitrary data values.
Step-by-Step Solution:
Identify requirement: many inputs → one output.Map to device: this is the precise function of a multiplexer.Confirm control: select lines choose which input reaches the single line.Verification / Alternative check:Truth tables for 2:1, 4:1, or 8:1 multiplexers show output equals the selected input, validating the definition.
Why Other Options Are Wrong:
Common Pitfalls:Confusing MUX with DEMUX or thinking a decoder forwards arbitrary data rather than generating one-hot lines.
Final Answer:multiplexer
Discussion & Comments