retagged by
2,344 views

1 Answer

Best answer
7 7 votes

- (48.625)   -->    - (110000.101)

Moving radix point to leading bit 1    --> - (1.10000101)*25

 Since In question it is mentioned ' single precision '

Sign 1 bit,  Exponent 8 bit (in Excess 127), Mantissa 23 bit

1<= E <= 254   and M != 0 , So we can use implicit normalised form 

E = 127 + 5 = (132)10 =(10000100)

S =(1)2  (since it's a negative number so sign bit = 1)

M=(10000101000000000000000)2

S(1) E(8) M(23)
1 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

In Hexadecimal form  (C2428000)16 

Please correct me If anywhere I get wrong.

selected by
Position:
Show:

Related questions

3 3 votes
2 2 answers
499
499 views
Vishnu__ asked Jan 20
499 views
P and Q are 32 bit registers used to store IEEE single precision floating point notations (32 bit).Let content of P and Q are P = C0400000H and Q = 40400000H. The P * Q r...
0 0 votes
1 1 answer
1.4k
1.4k views
rahul sharma 5 asked May 22, 2017
1,372 views
IEEE 754 32 bit representation for reference:-1. For the demoralized numbers,why the exponent is -126 and not -127? For 0 we say it is Mantissa=0 and B.E=0,so we get 0*2^...
13 13 votes
1 1 answer
6.0k
6.0k views
pC asked Jan 25, 2017
6,016 views
Question 1 Explain What is Denormalized NumberGive ExampleGive Representation in IEEE 754 and excess 64 (if any)Question 2 How to Convert $(12.625)_10$$(12.625)_10 \Left...
4 4 votes
2 answers 2 answers
6.5k
6.5k views
kapilbk1996 asked Nov 24, 2018
6,484 views
Consider the following bit pattern represents the floating point number in IEEE 754 single precision format: 1 10000111 11100000000000000000000Which of the following repr...