1. (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
d. 1.4375
Answer
1.4375 in simple binary => 1.0111so, 1.4375 in normal binary is 1.0111 => 1.0111 * 2^0single precision:——————–sign bit is 0(+ve)exp bits are (127+0=127) => 01111111frac bits are 01110000000000000000000so, 1.4375 in single-precision format is 0 01111111 01110000000000000000000in hexadecimal it is 0x3FB80000