Difficulty: Easy
Correct Answer: 4
Explanation:
Introduction / Context:
BCD represents decimal digits 0–9 using 4-bit binary words. A 1-of-10 BCD decoder asserts exactly one of ten outputs according to the BCD input. Determining the number of input lines helps with pin budgeting and logic design for display and selection circuits.
Given Data / Assumptions:
Concept / Approach:
Since BCD uses 4 bits per digit, the decoder must accept four input lines in order to uniquely represent the ten valid decimal values. The decoder then activates one corresponding output line among ten, often with additional blanking or error handling for invalid codes.
Step-by-Step Solution:
Recognize BCD width: 4 bits.Map valid codes: 0000..1001 → outputs 0..9.Provide four input pins to convey these bit values.Hence, the required inputs = 4.
Verification / Alternative check:
Standard ICs such as the 7442/74LS42 (BCD-to-decimal decoder) accept four inputs and produce ten active-low outputs, confirming the four-input requirement.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
4
Discussion & Comments