Integers : Sign and Magnitude

One way of representing negative numbers would be to use the first bit as a sign bit and the remaining bits to show the size (magnitude) of the number.

The sign bit is usually 0 for positive or 1 for negative...

Examples

+24 would be represented by  0 0011000

-24 would be represented by  1 0011000

...but there is a better system...