- There are three common representations for signed integers: sign-and-magnitude, 1's complement, and 2's complement.
- In sign-and-magnitude, the MSB represents the sign and the remaining bits represent the magnitude. In 1's complement and 2's complement, applying the operation (inverting bits) to a negative number yields the positive number.
- 2's complement is now the most common representation as it allows for easy arithmetic operations. It represents integers from -2n-1 to 2n-1-1 using n bits.