edited by
1,420 views
1 votes
1 votes

Q: The decimal number -0.329 x 2^15 is to be represented using a 16 bit floating point format without normalization as shown above. mantissa is pure fraction in sign magnitude form. Answer using rounding off is..

My Try: As it is 16 bit IEEE , so we should use  [Exponent - 63 = 15]     (coz, without normalization) which gives E = 78. 

I dont know why they grouped 3-3 bits, so even if we group them by three.. So, 4th digit should br 1 and not 5. 

(They have taken Expo - 64 = 15) why???   

edited by

3 Answers

0 votes
0 votes

 Without normalistion 0.329*215 =  (0.101010000* 214)    =  [ 1 1001110  10101000   ] 

Now for sign = 1 then start pairing 3-3 bits ;  u wil get 47250

Answer shud be 147250  .

Related questions

2 votes
2 votes
0 answers
2
2 votes
2 votes
1 answer
4