Difficulty: Easy
Correct Answer: 10
Explanation:
Introduction / Context:A BCD (Binary-Coded Decimal) to decimal decoder converts a 4-bit BCD input into a one-of-ten output pattern where exactly one line is active for the digit being represented. This question checks basic decoder literacy used in counters, seven-segment drivers, and numeric multiplexed displays.
Given Data / Assumptions:
Concept / Approach:A BCD-to-decimal decoder must generate a unique output for each decimal digit 0–9. Therefore there must be 10 outputs. Internally, combinational logic decodes the 4-bit input and drives the corresponding output line active, while all others remain inactive.
Step-by-Step Solution:
Identify decimal range for BCD: 10 digits (0–9).Map each digit to one line: requires 10 output lines.Invalid inputs: ignored or placed in a defined inactive state.Therefore total outputs = 10.Verification / Alternative check:Common ICs (e.g., 7442/7445 families) are 4-to-10 decoders/decoders-drivers, confirming the 10-line requirement.
Why Other Options Are Wrong:
Common Pitfalls:Confusing a 4-to-16 binary decoder with a BCD-to-decimal decoder; BCD decoders restrict outputs to 10 valid digits.
Final Answer:10
Discussion & Comments