A number F is represented in floating point notation as a triplet <s,E,M> where s is the sign bit, E is the exponent and M is the mantissa. Consider the floating point representation similar to IEEE-754 but with the following constraints, ‘s’ as 1 bit (0 for positive and 1 for negative), ‘E’ as 7 bit long and ‘M’ as 8 bit. Also the exponent is represent as a true exponent without any biasing.
Represent the number 75.75 in floating point using the above consideration.