retagged by
2,222 views

1 Answer

Best answer
6 votes
6 votes

First Convert 10.25 to binary format in this way

(10.25)10=(1010.01)2

For IEEE 754 format we have to normalize the number (decimal point following a leading 1): 1.01001*23

Now, the leading 1 here is omitted while storing as it is implied as long as exponent is non zero (normalized representation)

here for Single precision Biased exponent= E'=E+127 (127 is bias)

                                                               E'=130=(10000010)2

So for 32 bits: 

 Sign bit(1 bit) exponent bits(8bits) mantissa(23bits)
0(for +ve sign) 10000010 01001000000000000000000

convert it into hexadecimal format:41240000

edited by

Related questions

1.2k
views
0 answers
3 votes
Theo asked Jan 4, 2018
1,241 views
Question 1 (a) Convert the positive decimal number 17.45 to IEEE 754 single precision representation. Show all of your working out. [15 marks](b) In IEEE 754 ... [10 marks](c) Why is the exponent biased in IEEE representation? [5 marks]
697
views
1 answers
0 votes
1.9k
views
2 answers
2 votes
iita asked Jan 27, 2017
1,878 views
The value denoted by 110000100111100000 ... 0 in IEEE 754. Signal precision standard in decimal is ____.
1.1k
views
1 answers
0 votes
KISHALAY DAS asked Oct 21, 2016
1,123 views