In: Computer Science
3. IEEE Floating Point Representation
What decimal number does the 32-bit IEEE floating point number 0xC27F0000 represent? Fill in the requested information in the blanks below. What is the sign of the number (say positive or negative): What is the exponent in decimal format: What is the significand in binary: What is the value of the stored decimal number in decimal (final answer): Credit will be given for your final answer in the blanks and the work shown below.
The 32 bit IEEE floating point number can be divided as follows
After converting the floating point to binary,the below division is performed.
The binary conversion of 0xC27F0000 is 11000010011111110000000000000000.
So the Decimal number will be 1.9921875 * 2 ^ 5 = 63.75. Since the sign bit is -ve the final decimal number is -63.75.