Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
The 74148 priority encoder outputs a 3-bit code (active-low) that represents the highest-priority active-low input. Correctly interpreting the active-low convention is key to matching expected outputs with datasheet truth tables.
Given Data / Assumptions:
Concept / Approach:
Decimal index 4 corresponds to binary 100. Because the outputs are active-low, the output code is the bitwise inversion of 100, namely 011. In terms of A2, A1, A0, that is A2 = 0, A1 = 1, A0 = 1. The statement given—A0 = 1, A1 = 1, A2 = 0—matches this pattern and is therefore correct.
Step-by-Step Solution:
Verification / Alternative check:
Refer to 74148 truth tables: for I4 asserted (low) with no higher-priority active inputs, the outputs read 0,1,1 (active-low) and the group signal pins behave accordingly.
Why Other Options Are Wrong:
Common Pitfalls:
Misreading the MSB/LSB order; forgetting inversion due to active-low outputs.
Final Answer:
Correct
Discussion & Comments