Difficulty: Easy
Correct Answer: 9
Explanation:
Introduction / Context:BCD-to-decimal decoders (e.g., 7442/7443 types) take a 4-bit BCD input and assert exactly one of ten outputs corresponding to digits 0–9. In many parts, the outputs are active-LOW, meaning the selected line is driven LOW while all others remain HIGH.
Given Data / Assumptions:
Concept / Approach:With active-LOW outputs, the selected decimal line is the one matching the BCD input value and will be 0 (LOW); all other decimal output lines stay at 1 (HIGH). Thus, for 1001, the 9 output goes LOW.
Step-by-Step Solution:
Interpret input: 1001₂ (BCD) ⇒ digit 9.Active-LOW outputs: selected line is LOW; others HIGH.Therefore, output '9' is LOW, all others HIGH.Verification / Alternative check:Consult any active-LOW decoder truth table: for input 9, Y9 = 0 and Y0–Y8,Y10… = 1. Simulations or bench tests with LEDs to ground (since outputs sink current when LOW) also demonstrate this behavior clearly.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:9
Discussion & Comments