Difficulty: Easy
Correct Answer: 00011001
Explanation:
Introduction / Context:
The 2's complement operation is the standard way to represent negative numbers and to perform subtraction on binary systems. It is computed by inverting all bits (1's complement) and then adding 1 to the result.
Given Data / Assumptions:
Concept / Approach:
Two steps: first invert each bit; second add 1 while staying within 8 bits (discard any carry beyond bit 7).
Step-by-Step Solution:
Verification / Alternative check:
To verify, add the original and its 2's complement: 11100111 + 00011001 = 1 00000000 (carry out ignored), confirming correctness under 8-bit arithmetic.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
00011001
Discussion & Comments