Question

5p Question 5 Convert the decimal number 9.625 to a floating-point number expressed in the 14-bit simple model given in your
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Given decimal number = 9.625

Convert the given number to Binary number=1001.101 = 1.001101 X 2^3

The floating point number is of the format = (1.M) X 2^(E - B)

Where M is Mantissa , E is Exponent and B is Bias

Sign - 0 (Positive)

Exponent - Bias= 3

Exponent - 15= 3 ------------> Exponent = 3+15=18 --------> Binary form of Exponent = 10010

Mantissa = 001101 ----------> If we represent Mantissa in 8 bits then Mantissa = 00110100

Floating point number has 14 bits, which can be represented as below

Sign(1 bit) Exponent(5 bits) Mantissa(8 bits)

So, the floating point representation is

0 10010 00110100

PLEASE DON'T FORGET TO LIKE*******"""

Add a comment
Know the answer?
Add Answer to:
5p Question 5 Convert the decimal number 9.625 to a floating-point number expressed in the 14-bit...
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. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • If we use the IEEE standard floating-point single-precision representation (1 sign bit, 8 bit exponent bits...

    If we use the IEEE standard floating-point single-precision representation (1 sign bit, 8 bit exponent bits using excess-127 representation, 23 significand bits with implied bit), then which of the following hexadecimal number is equal to the decimal value 3.875? C0780000 40007800 Oo 40780000 40A80010 The binary string 01001001110000 is a floating-point number expressed using a simplified 14-bit floating-point representation format (1 sign bit, 5 exponent bits using excess-15 representation, and 8 significand bits with no implied bit). What is its...

  • Convert from 32-bit IEEE 754 Floating Point Standard (in hexadecimal) to decimal: 410C0000, with the following...

    Convert from 32-bit IEEE 754 Floating Point Standard (in hexadecimal) to decimal: 410C0000, with the following layout: first bit is sign bit, next 8 bits is exponent field, and remaining 23 bits is mantissa field; result is to be rounded up if needed. answer choices 9.125 8.75 7.75 4.625 6.3125

  • 1. Assume we are using the simple model for floating-point representation as given in this book...

    1. Assume we are using the simple model for floating-point representation as given in this book (the representation uses a 14-bit format, 5 bits for the exponent with a bias of 15, a normalized mantissa of 8 bits, and a single sign bit for the number): a) Show how the computer would represent the numbers 100.0 and 0.25 using this floating-point format. b) Show how the computer would add the two floating-point numbers in part a by changing one of...

  • please explain steps!! Convert the boy binary floating point numbers below to decimal notation forseti 8...

    please explain steps!! Convert the boy binary floating point numbers below to decimal notation forseti 8 bits: SEEEEEFF and the bias is 7, where S-sign, E-Exponent acts on bits) 10 pt. / 5 pts es convert from 8 bit floating point binary format convert to: decimal +/-n.nn DS EEE (FFC - 0100 1.100 = -1,5 426 6 14.05 Yoryal = 15 +0111 1140=125 10110100 00111110 me floating point

  • . 2.1 a.  Find the 16-bit 2’s complementary binary representation for the decimal number 1987. b.   Find...

    . 2.1 a.  Find the 16-bit 2’s complementary binary representation for the decimal number 1987. b.   Find the 16-bit 2’s complementary binary representation for the decimal number −1987. What are the 16-bit 1’s and 2’s complements of the following binary numbers? a.   10000 b.   100111100001001 Convert the decimal number 19557 to floating point. Use the format SEEMMMM. All digits are decimal. The exponent is stored excess-40 (not excess-50). The implied decimal point is at the beginning of the mantissa. The sign...

  • 2.1 a. Find the 16-bit 2’s complementary binary representation for the decimal number 1987. b. Find...

    2.1 a. Find the 16-bit 2’s complementary binary representation for the decimal number 1987. b. Find the 16-bit 2’s complementary binary representation for the decimal number −1987. What are the 16-bit 1’s and 2’s complements of the following binary numbers? c. 10000 d. 100111100001001 Convert the decimal number 19557 to floating point. Use the format SEEMMMM. All digits are decimal. The exponent is stored excess-40 (not excess-50). The implied decimal point is at the beginning of the mantissa. The sign...

  • Assume the following representation for a floating point number 1 sign bit

     Assume the following representation for a floating point number 1 sign bit, 4 bits exponent, 5 bits for the significand, and a bias of 7 for the exponent (there is no implied 1 as in IEEE). a) What is the largest number (in binary) that can be stored? Estimate it in decimal. b) What is the smallest positive number( closest to 0 ) that can be stored in binary? Estimate it in decimal.c) Describe the steps for adding two floating point numbers. d)...

  • Consider the following two 16-bit floating-point representations 1. Format A. There is one sign b...

    Please show work, thanks. Consider the following two 16-bit floating-point representations 1. Format A. There is one sign bit There are k 6 exponent bits. The exponent bias is 31 (011111) There are n 9 fraction/mantissa bits 2. Format B There is one sign bit There are k 5 exponent bits. The exponent bias is 15 (01111) There are n 10 fraction/mantissa bits Problem 1 (81 points total /3 points per blank) Below, you are given some bit patterns in...

  • ints) The following questions pertain to machine numbers (a) (2 points) For an 8-bit unsigned integer, what is the decimal equivalent of 10010101? (b) (3 points) For an S-bit signed integer, what...

    ints) The following questions pertain to machine numbers (a) (2 points) For an 8-bit unsigned integer, what is the decimal equivalent of 10010101? (b) (3 points) For an S-bit signed integer, what is the decimal equivalent for the 2's compliment of 11010101? (c) (5 points) Consider an 8-bit floating point number like the one in Homework A2 (one sign bit, three exponent bits, and four assignable mantissa bits), what is the floating point number that associates with 01101 1001? ints)...

  • Floating Point Representation Consider a computer that stores information using 10 bits words. The first bit...

    Floating Point Representation Consider a computer that stores information using 10 bits words. The first bit is for the sign of the number, the next 5 for the sign and magnitude of the exponent and the last 4 for the magnitude of the mantissa. The mantissa is normalized as described in class and in the textbook. a. Convert 1 00010 1001 to a base-10 system b. What is the highest number that can be stored on this computer? c. What...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT