retagged by
559 views

1 Answer

Best answer
5 votes
5 votes

It is a hypothetical 16 bit floating point representation
sign bit =1 bit exponent=7 bit it is excess-64 means add 64 (1000000) in actual exponent 
mantissa=8 bits
no is (0.2 *213)10
= (.001100110011.... *213)  is not normalize
=(.100110011..... *210)  is normalized now 
exponent field = actual exponent + bias= (10+64)=(74)10 =(1001010)2 
 now 8 bits mantissa = 10011001
sign bit field =0 (means positive no)
now put all these values in given format(sign bit-exponent-mantisssa) nd convert it into base-16
=(0100101010011001)2
=(4A99)
 

selected by

Related questions

0 votes
0 votes
0 answers
2
Prakhar Yadav 1 asked Sep 13, 2018
425 views
Assume the initial state of the clock and the flip flop is LOW (=0). If the frequency of the clock signal is f with 50% duty cycle and the flip-flop delay (< Tclk/2) the...
0 votes
0 votes
1 answer
4