Difficulty: Easy
Correct Answer: 2's complement
Explanation:
Introduction / Context:
The 74181 is a classic TTL 4-bit arithmetic logic unit that implements a variety of logic and arithmetic functions. Understanding how subtraction is realized clarifies the number representation effectively supported by the chip in typical CPU designs.
Given Data / Assumptions:
Concept / Approach:
Two’s-complement subtraction A − B is implemented as A + (two’s complement of B) = A + (B̄ + 1). The 74181 can complement one operand and accept a carry-in of 1, thereby performing subtraction through addition, which is the standard two’s-complement technique.
Step-by-Step Solution:
Verification / Alternative check:
Manufacturer datasheets show function tables enabling addition with complemented inputs and carry-in, confirming two’s-complement subtraction support across cascaded 74181 stages for wider word lengths.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a separate subtractor is required; misunderstanding that complement-and-add with carry-in is precisely the two’s-complement method.
Final Answer:
2's complement
Discussion & Comments