Difficulty: Easy
Correct Answer: addition
Explanation:
Introduction / Context:A 4-bit adder IC (e.g., 74HC283/74LS283) provides parallel addition of two 4-bit operands with Cin/Cout for cascading. Other arithmetic/logic functions often require external gating or dedicated ALU chips.
Given Data / Assumptions:
Concept / Approach:Plain addition is native. Subtraction can be realized in a system by inverting B and setting Cin=1 (two's-complement technique), but that requires extra inversion hardware; the bare adder alone does not implement subtraction or AND by itself. Therefore, the only operation directly supported by the chip without external gating is addition.
Step-by-Step Solution:
Identify native function from pinout/equations: Sum = A xor B xor Cin.Non-native functions (subtraction/AND) need extra logic.Hence, direct capability = addition only.Verification / Alternative check:Datasheets name the part a “binary adder”; subtraction examples always show complemented inputs and Cin=1 using extra gates.
Why Other Options Are Wrong:
Subtraction: Requires complementing B and setting Cin=1.Logical AND: Requires gate logic, not a sum circuit.All of the above / parity: Not provided by a plain adder.Common Pitfalls:Assuming ALU capabilities from an adder part number.
Final Answer:addition
Discussion & Comments