How are positive integers represented using two’s complement
The most significant bit is a 0
How are negative integers represented using two’s complement
The most significant bit is a 1, the other ones are then added to the initial negative number to find the denary value
How do you go from positive to negative (2C)
Flip the bits and add 1
Range of Values of 2s Complement
-2^n-1 to 2^n-1 -1