

a) Converting given 100.0 into binary.
10010= 11001002
Converting binary number to the power of 2
1100100.0 = 0.1100100*27
Therefore the value of the exponent is 7.
Convert the exponent into 15 bits excess. So by adding 15 to 7 it becomes 22
15+7=22
Converting 22 to binary = 101102
Sign bit = 0
Exponent(5 bits) = 10110
Significant bits of 8 = 11001000
So the 14-bit floating-point representation of 100.0 is 01011011001000
Now, Converting 0.25 to binary
0.2510 = 0.012
Converting binary number to the power of 2
0.01 = 0.1*2-1
Value of exponent is -1.
Convert the exponent into 15 bits excess. So by adding 15 to -1 it becomes 14
15-1=14
142=011102
Sign bit = 0
Exponent(5 bits) = 01110
Significant bits of 8 = 10000000
So the 14-bit floating-point representation of 0.25 is 00111010000000
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

- 5arrow_forwardWhen providing a base-ten block representation for the number 3.59, James uses 2 flats, 13 Rods, and 29 cubes. Is this an acceptable representation, if it is not explain why, if it is tell me the unit that James is using.arrow_forwardMore on Negative Numbers If we use 16 bits, what is the largest integer (signed) we can represent? What is its binary representation? What is the smallest (most negative) integer? What is its binary representation?arrow_forward
- Convert the floating point decimal number (0.55) into 8 bit floating point computer system represention using Excess code.arrow_forwardAssume we are using the simple model for floating-point representation discussed in the class (the representation uses a 14-bit format, 5 bits for the exponent with an Excess-M, a significand of 8 bits, and a single sign bit for the number): Convert 12.345 to the floating-point binary representation. (Remember we learned "implied one" format in the lecture) You need to type in the calculation steps or insert the picture of your handwriting using "insert" menu above.arrow_forwardConsider a hypothetical 8 bit floating point machine representation with a sign bit, a 3 bit exponent, and a 4 bit mantissa (se1e2e3b1b2b3b4), where the exponent bias is 3 (add 3 to exponent of number to form machine representation). Recall that actual mantissa has 5 bits, since the leading 1 is not stored on the machine. (a) What is the number ?≈2.718 in this 8-bit format? (b) What is the number that (10100111)2 represents in this 8-bit format? (c) What is the upper bound of the relative error when representing a real number in this 8-bit format?arrow_forward
- H - For the IEEE 754 single-precision floating point, write the hexadecimal representation for the following decimal values: (i)–1.0 (ii)– 0.0 (iii)256.015625arrow_forwardConsider a 6-bit two’s complement representation. Fill in the box with question mark "?" in the following table. You don't need to care about "n/a." Number Binary Representation TMin + TMin ? Please input the binary representation in this format xxxxxx. For example, if the answer is 010010, please input 010010.arrow_forwardExplain the term masking. How is it useful for data representation? Explain the concept using an example For a floating-point format with a k -bit exponent and an n -bit fraction, give a formula for the smallest positive integer that cannot be represented exactly (because it would require an n + 1 –bit fraction to be exact).arrow_forward
- 1. Write down the IEEE double-precision representation for the following decimal numbers: (a) 1.5, using round up. (b) 5.1, using round to nearest. (c) -5.1, using round towards 0. (d) -5.1, using round down.arrow_forwardFloating-Point Representation. What is the floating-point value for binary 4. a) 11000010100000 using the simple model (14-bit format, 5 bits for the exponent with a bias 15, a normalized significand of 8 bits, and a single sign bit for the number)?arrow_forwardImagine that there was a IEEE standard for 7-bit floating-point numbers with 3 bits for the exponent and 3 bits for the fraction and bias equal to 3. What would be the exact value in decimal of the bitstring under such a format? Your Answer: Answer 1110101arrow_forward
Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill Education
Starting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSON
Digital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSON
Database Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage Learning
Programmable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





