We want to represent unsigned numbers in the range 0 to 5 using 8bits. This will allow us to represent 256 numbers in that range, and there are only 6 integers in that range, so we'll be able to represent 250non-integral values, such as, perhaps, 2.5. Assume we will use a representation with 0xff representing 5 and 0 representing 0.
A Is this a fixed-point representation? (Hint: where will we put the binary point?)
B What number represents the decimal number 1.75?
C What number is represented by the binary (actually hexadecimal) value 0x97?
D What is the resolution of this representation?