Question: Convert the 8 bit toy binary floating point number below to decimal notation: (format is 8 bits: S EEEE FFF and the bias is 7,


Convert the 8 bit "toy" binary floating point number below to decimal notation: (format is 8 bits: S EEEE FFF and the bias is 7, where S=sign, E=Exponent F=Fraction bits). 01000110(bin)=(dec). For answer use (sign) x.x format, e.g. 2.5,+1.75,+0.0, etc. What is the result when a signed char i=083 shifted for each case: 1) logical shift right 1 bit: 0x 2) arithmetic shift right 2 bits: 0x What is the result when a signed char i=094 shifted for each case: 1) logical shift right 3 bits: 2) arithmetic shift right 2 bits
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
