Please give me First and second answer. If you don't mind please check my 3rd question is this my question is right or wrong. Thanks
______________________________________________________________________________
______________________________________________________________________________
3. Consider an unsigned fixed point decimal (Base10) representation with 8 digits, 5 to the left of the decimal point and 3 to the right. ( Have to fixed)
a. What is the range of the expressible numbers?
Answer: [00000.000, 99999.999]
b. What is the precision?
Answer: 0.001 the precision is the distance between successive numbers.
c. What is the error? (Confused)
Answer: the error is ½ the precision. The error is 0.001/2 = 0.0005
Solution :-
According to the HomeworkLib guidelines,I'm solving only the first question.
Please repost the remaning questions.






Please upvote my answer :)
Please give me First and second answer. If you don't mind please check my 3rd question...
Show how each of the following floating-point values would be stored for -127.625 using IEEE-754 single precision be sure to indicate the sign bit, the exponent, and the significand fields
4) Show how each of the following floating-point values would be stored using IEEE-754 single precision (be sure to indicate the sign bit, the exponent, and the significand fields): a) 8.25
(3 pts) This problem tests your knowledge about coding schemes. What is the binary bit pattern for the letter 'h' using? The answers should give the whole bit string (including leading 0s). ASCII encoding (7-bits) EBCDIC encoding (8-bits) UNICODE encoding (16 bits) ______________________________________________________________________________ (3 pts) Show how each of the following floating point values would be stored using IEEE-754 single precision (be sure to indicate the sign bit, the exponent, and the significand fields): (show your work) 12.5 −1.5 0.75 26.625...
2. Convert the following real numbers into single precision IEEE floating point format. Give the final answer in hexadecimal and specify: the sign bit, exponent bits, and significand bits. Show your work. (10 + 10 points) A. 69.625 B. -123.7 the following IEEE single precision floating point numbers. Show your work. (10 + 10 points) A. 0xc1be0000 B. 0x42c68000
One day Tom found a weird-looking computer in his basement. After studying it, Tom figured out that this computer stores floating point numbers in a way similar to the IEEE 754 standard. However, it uses 30 bits. Among these bits, the most significant (i.e. the leftmost) bit is for the sign (same as IEEE 754), the following 7 bits are for the biased exponent with the bias as 63, and the rest are for the significand. If the real number...
One day Tom found a weird-looking computer in his basement. After studying it, Tom figured out that this computer stores floating point numbers in a way similar to the IEEE 754 standard. However, it uses 27 bits. Among these bits, the most significant (i.e. the leftmost) bit is for the sign (same as IEEE 754), the following 7 bits are for the biased exponent with the bias as 63, and the rest are for the significand. If the real number...
(2 pts) Express the base 10 numbers 16.75 in IEEE 754 single-precision floating point format. Express your answer in hexadecimal. Hint: IEEE 754 single-precision floating-point format consists of one sign bit 8 biased exponent bits, and 23 fraction bits) Note:You should show all the steps to receive full credits) 6.7510 Type here to search
Calculate 1.666015625 x 10° (1.9760 x 104 + - 1.9744 x 10^) by hand, assuming each of the values are stored in the 16-bit half precision format IEEE 754-2008. IEEE 754-2008 contains a half precision that is only 16 bits wide. The left most bit is still the sign bit, the exponent is 5 bits wide and has a bias of 15, and the mantissa is 10 bits long. A hidden 1 is assumed. Assume 1 guard, 1 round bit,...
In this question you will use the data type “bit32” introduced in Lab 2 (i.e. an unsigned int). We will use the IEEE 754 standard for floating point numbers, with 1 sign bit, 8 bits for the exponent, and 23 bits for the mantissa. For the following programming questions, place each function in a common file “fplib.c” for compiling and testing. You are not to use any C floating point data types (i.e., float, double). You can use the bitwise...
please help
Problem 4 (10 points): 1. Consider the numbers 23.724 and 0.3344770219. Please normalize both 2. Calculate their sum by hand. 3. Convert to binary assuming each number is stored in a 16-bit register. Half-precision binary floating-point has: sign bit: lbit, exponent width: 5bits and a bias of 15, and significand 10 bits (16 bits total) 4. Show cach step of their binary addition, assuming you have one guard, one round, and one sticky bit, rounding to the nearest...