Question

Write the decimal equivalents for these IEEE floating point numbers 0 10000011 00000000000000000000000

Write the decimal equivalents for these IEEE floating point numbers

0 10000011 00000000000000000000000

Homework Answers

Answer #1

0 10000011 00000000000000000000000
sign bit is 0(+ve)
exp bits are 10000011
   => 10000011
   => 1x2^7+0x2^6+0x2^5+0x2^4+0x2^3+0x2^2+1x2^1+1x2^0
   => 1x128+0x64+0x32+0x16+0x8+0x4+1x2+1x1
   => 128+0+0+0+0+0+2+1
   => 131
in decimal it is 131
so, exponent/bias is 131-127 = 4
frac bits are 

IEEE-754 Decimal value is 1.frac * 2^exponent
IEEE-754 Decimal value is 1. * 2^4
1. in decimal is 1
   => 1.
   => 1x2^0
   => 1x1
   => 1
   => 1
so, 1 * 2^4 in decimal is 16
so, 01000001100000000000000000000000 in IEEE-754 single precision format is 16
Answer: 16


Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
For IEEE 754 single-precision floating point, write the hexadecimal representation for the following decimal values: 0.6
For IEEE 754 single-precision floating point, write the hexadecimal representation for the following decimal values: 0.6
Represent the following decimal numbers using IEEE-754 floating point representation. please show all work i. -0.75...
Represent the following decimal numbers using IEEE-754 floating point representation. please show all work i. -0.75 ii. 0 iii. - infinity iv. 23 v. 10.25
Convert the decimal number 1283.181 to IEEE 754 floating point format. Show all work.
Convert the decimal number 1283.181 to IEEE 754 floating point format. Show all work.
Using IEEE 754 single precision floating point, write the hexadecimal representation of negative infinity.
Using IEEE 754 single precision floating point, write the hexadecimal representation of negative infinity.
Using the IEEE single-precision floating point representation, find the decimal number represented by the following 32-bit...
Using the IEEE single-precision floating point representation, find the decimal number represented by the following 32-bit numbers, each expressed as an 8-digit hex number. Express your answer using decimal scientific notation. (a) (C6500000)16 (b) (31200000)16
Given a 12-bit IEEE floating point format with 5 exponent bits: Give the hexadecimal representation for...
Given a 12-bit IEEE floating point format with 5 exponent bits: Give the hexadecimal representation for the bit-pattern representing −∞−∞. Give the hexadecimal representation for the bit-patterns representing +0 and -1. Give the decimal value for the floating point number represented by the bit-pattern 0xcb0. Give the decimal value for largest finite positive number which can be represented? Give the decimal value for the non-zero negative floating point number having the smallest magnitude. What are the smallest and largest magnitudes...
How do you convert a decimal like 4.9219 into binary? (assuming 32-bit IEEE 754 floating point...
How do you convert a decimal like 4.9219 into binary? (assuming 32-bit IEEE 754 floating point format)
Matlab uses IEEE double precision numbers: 64-bit floating point representation 1 bit : sign 11 bits:...
Matlab uses IEEE double precision numbers: 64-bit floating point representation 1 bit : sign 11 bits: exponent 52 bits: mantissa. Calculate largest number (less than inf) that can be stored accurately Calculate smallest number (x>0) that can be stored accurately Calculate the machine epsilon Show all work step by step and repeat for 10 bit floating point (bit sign, 4 bits exponent and 5 bits mantissa)
Convert the following floating-point number (stored using IEEE floating-point standard 754) to a binary number in...
Convert the following floating-point number (stored using IEEE floating-point standard 754) to a binary number in non-standard form. 1100_0100_1001_1001_1000_0000_0000_0000
Matlab uses IEEE double precision numbers: 64-bit floating point representation 1 bit : sign 11 bits:...
Matlab uses IEEE double precision numbers: 64-bit floating point representation 1 bit : sign 11 bits: exponent 52 bits: mantissa. Calculate largest number that can be stored accurately Calculate smallest number (x>0) that can be stored accurately Calculate the machine epsilon Show all work step by step and explain calculations Now calculate the largest number and smallest number for a 10 bit floating point (1 bit for the sign, 4 bits exponent and 5 bits mantissa)