- Joined
- Mar 3, 2006
- Messages
- 1,564
I was searching all over the internet and YouTube videos on how float are stored in computer memory as binary, I found out how but I was stuck at the part on how to normalize a binary number, some sites and videos say that it is in this format '0.1011 x 2e' and others say you must have a leading 1 like this '1.0110 x 2e' also according to many sites I read, it is the leading 1 that is normalized.
With 8-bit system:
1 bit for the sign
3 bit for the exponent
4 bit for the mantissa
I saw a video that represents 7.0
and another site as
Which is correct ?
With 8-bit system:
1 bit for the sign
3 bit for the exponent
4 bit for the mantissa
I saw a video that represents 7.0
0 | 011 | 1110 |
and another site as
0 | 101 | 1100 |
Which is correct ?