60 pts) Convert the following numbers into 32-bit IEEE 745floating format. You need to include all calculation steps in orderto get full credit. Before submission, you could verify your finalanswer here:https://www.h-schmidt.net/FloatConverter/IEEE754.html
B.-7.1875
Answer
-7.1875 in simple binary => 111.0011so, -7.1875 in normal binary is 111.0011 => 1.110011 * 2^2single precision:——————–sign bit is 1(-ve)exp bits are (127+2=129) => 10000001frac bits are 11001100000000000000000so, -7.1875 in single-precision format is 1 10000001 11001100000000000000000in hexadecimal it is 0xC0E60000