Difficulty: Easy
Correct Answer: 4
Explanation:
Introduction / Context:
Binary-Coded Decimal (BCD) represents decimal digits 0–9 using a 4-bit binary pattern. A 1-of-10 decoder uses this 4-bit code to select one of ten output lines. Understanding the required number of inputs is key when interfacing counters and displays.
Given Data / Assumptions:
Concept / Approach:
BCD uses 4 bits per decimal digit. Therefore, a BCD decoder that uniquely identifies digits 0–9 requires four input lines (A, B, C, D). Illegal codes 1010–1111 are typically treated as don’t-care or invalid.
Step-by-Step Solution:
Recognize 8421 BCD → 4 bits.Map 4-bit combinations 0000–1001 to outputs 0–9.Ignore 1010–1111 (not used) or handle per datasheet.Hence, the decoder needs 4 input lines.
Verification / Alternative check:
Examine datasheets for BCD decoders; pin listings show four data inputs plus enable pins.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the number of outputs (10) with the number of input lines (4 for BCD).
Final Answer:
4
Discussion & Comments