This document provides a 5-step process to convert a single-precision IEEE 754 binary number to a floating-point decimal value. The steps are: 1) group the bits into sign, exponent, and fraction sections, 2) determine if the number is positive or negative from the sign bit, 3) get the exponent value and subtract the bias of 127, 4) convert the fraction bits to base-10, and 5) calculate the final value using the sign, fraction, exponent, and bias in the floating point calculation formula. As an example, the binary number 1 10000001 10110011001100110011010 is summarized to have a value of approximately -6.8 after going through the conversion steps.