Difficulty: Easy
Correct Answer: using the input lines for data selection and an enable line for data input
Explanation:
Introduction / Context:
Decoders and demultiplexers are closely related. A decoder activates exactly one of many outputs based on a binary select value. A demultiplexer routes a single data input to one of several outputs based on the same kind of select value. Understanding this relationship lets you repurpose readily available decoder ICs as DeMUXes with minimal wiring changes.
Given Data / Assumptions:
Concept / Approach:
To emulate a DeMUX, connect the binary selection lines to the decoder’s address inputs. Feed the DeMUX data signal into the decoder’s enable (or strobe) so that only the selected output reflects the data signal’s active level. The other outputs remain inactive, just as in a native DeMUX IC.
Step-by-Step Solution:
Verification / Alternative check:
Compare truth tables: with enable driven by data, the decoder energizes only the addressed output, exactly matching demultiplexing.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that many decoders have active-LOW enables and outputs; ensure polarity matches the data signal level or add inversion as needed.
Final Answer:
using the input lines for data selection and an enable line for data input
Discussion & Comments