Why do we have to add bias or convert an exponent of IEEE floating point number in its 2's or 1's complement form ?? why can't we store it like this in single precision :
1.1 * 2^0 => 0 00000000 10000000000000000000000
instead of this:
1.1 * 2^ (0 + 127) => 0 01111111 10000000000000000000000
thanks