Difficulty: Easy
Correct Answer: - 128
Explanation:
Introduction / Context:
Two's-complement encoding is the standard for signed integers in digital systems. Understanding its numeric range avoids overflow and sign errors in embedded and computer systems.
Given Data / Assumptions:
Concept / Approach:
For an n-bit two's-complement integer, the value range is from -2^(n-1) to +2^(n-1) - 1. For n = 8, the range is -128 to +127.
Step-by-Step Solution:
Verification / Alternative check:
Binary 1000 0000 in two's complement equals -128. No other 8-bit pattern is more negative.
Why Other Options Are Wrong:
Common Pitfalls:
Interpreting “greatest negative” as closest to zero (e.g., -1); in range questions, it means the minimum value (most negative), which is -128 for 8-bit two's complement.
Final Answer:
- 128
Discussion & Comments