Question

Convert 1010.10102 binary floating point to decimal floating point.

Convert 1010.10102 binary floating point to decimal floating point.

Homework Answers

Answer #1

1010.10102 binary floating point to decimal floating point.

first 2 is wrong here. 2 can't be there in Binary representation

so the no you gave is wrong so i am solving on number

I hope you Understand

number = (1010.1010)2

(1010.1010)2 = (10.625)10

to convert into Decimal floating point

We will Separate the sign exponent and the mantissa
We will now multiply the the numbers having place value once with 20 tens place with 21 hundreth place with 22 and so on.

In decimal we will start with negative powers of 2 as 2-1,2-2 and so on

now we will get Ans as (10.625)10

You can comment if you have any doubt.
Upvote if you got your answer.
Thanks

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
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)
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
Convert 0xD1 (hexadecimal) to binary and to decimal Convert 0b11001001 (binary) to hex and to decimal
Convert 0xD1 (hexadecimal) to binary and to decimal Convert 0b11001001 (binary) to hex and to decimal
Convert the following binary floating point number 100101.1001010101 using IEEE-756 single precision representation Plz show work,...
Convert the following binary floating point number 100101.1001010101 using IEEE-756 single precision representation Plz show work, thanks!
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.
2 Convert each of the following octal numbers to 10-bit binary, hexadecimal, and decimal. Show your...
2 Convert each of the following octal numbers to 10-bit binary, hexadecimal, and decimal. Show your work. (a) 368 (b) 7568 3 Convert the following binary values into Decimal, Octal and hexadecimal. Show your work. (a) 111010101011112 (b) 1010111011001102 (c) 1011101010001112 (d) 1111101011102 4 Convert the following hexadecimal numbers to 16-bit binary and decimal numbers. Show your work. (a) FE9816 (b) FCAD16 (c) B00C16 (d) FEDF16 5 Perform the addition on the following unsigned binary numbers. Indicate whether or not...
Convert the hexadecimal number DEADBEEF to binary. Convert the following decimal number to binary: a) 356...
Convert the hexadecimal number DEADBEEF to binary. Convert the following decimal number to binary: a) 356              b) 658 What decimal value does the 8-bit binary number 10011110 represent if it is on a computer using two’s complement representation? What decimal value does the 8-bit binary number 10110100 have if it is on a computer using two’s complement representation? please show your work for question number 4. thank you.
convert 0.83828125 to binary using 8 bit to right of binary point
convert 0.83828125 to binary using 8 bit to right of binary point
convert the binary value 0011011.111 into both a decimal and hexadecimal value​
convert the binary value 0011011.111 into both a decimal and hexadecimal value​
In C++ Write a program that will convert a string of binary digits to their decimal...
In C++ Write a program that will convert a string of binary digits to their decimal equivalent. For convenience limit the binary number to 16 bits. Write the decimal equivalent to the screen. For this program you must read in the binary number as a string type. If you were to enter a large binary number like 110110001100111 as a decimal value it would be too large to fit in an int type.