In: Computer Science
7-bit float to fraction
Consider a 7-bit float representation with 3 exponent bits. that k is the number of exponent bits, and the bias is computed as 2k-1-1.
For each problem, convert the given float value (provided as a series of bits) into the equivalent base 10 fraction. Simplify each fraction as much as possible. If there is a whole number part and a fractional part, put a space between them.
Here are some example values in the correct format:
Need help with these
1.Convert 0 000 101 to a base 10 fraction.
2.Convert 0 011 010 to a base 10 fraction.
3.Convert 1 011 001 to a base 10 fraction
4.Convert 0 010 000 to a base 10 fraction
5.Convert 1 000 010 to a base 10 fraction.
6.Convert 1 011 000 to a base 10 fraction.
7.Convert 1 110 111 to a base 10 fraction.
8.Convert 1 101 001 to a base 10 fraction.
9.Convert 0 000 010 to a base 10 fraction.
10.Convert 0 001 111 to a base 10 fraction.
Solution:
The Conversion Procedure as follows: