Given a bit pattern 0 times C00C0000 please compute What dec
Given a bit pattern 0 times C00C0000. please compute What decimal number does the bit pattern represent if it is an unsigned integer? What decimal number does the bit pattern represent if it is a two\'s complement integer? What decimal number does the bit pattern represent if it is a floating point number? Use the IEEE 754 single-precision standard.
Solution
This in binary is (0000 0000 1100 0000 0000 1100 0000 0000 0000 0000)2
When you convert this to a two\'s complement integer, it comes out to be -1072955392.
When you convert this to unsigned decimal, it becomes 3222011904.
When you convert this decimal to IEEE 754 floating point, it comes out to be:
3.22201e+09.
1) 3222011904
2) -1072955392
3) 3.22201e+09
