Sign and Magnitude:
Lower N-1 bits represent the magnitude of the integer.
MSB is set to 0 or 1 to indicate positive or negative.
1’s complement:
Construct the corresponding positive integer (MSB = 0).
Bitwise NOT (complement) this integer.
2’s complement:
Construct the 1’s complement negative integer.
Add 1 to this.