The format of the single-precision floating-point representation of a real number as per the IEEE 754 standard is as follows:
\[ \begin{array}{|c|c|c|} \hline \text{sign} & \text{exponent} & \text{mantissa} \\ \hline \end{array}\] Which one of the following choices is correct with respect to the smallest normalized positive number represented using the standard?
Step 1: Recall IEEE 754 normalization rule.
In IEEE 754 single precision, normalized numbers have a non-zero exponent field and an implicit leading 1 in the mantissa.
Step 2: Identify smallest normalized exponent.
The smallest exponent for a normalized number is \texttt{00000001}. The exponent \texttt{00000000} is reserved for denormalized numbers.
Step 3: Determine smallest mantissa.
The smallest normalized value uses all zeros in the mantissa, since the implicit leading 1 already exists.
Step 4: Conclusion.
Thus, the smallest normalized positive number has exponent \texttt{00000001} and mantissa all zeros.
Final Answer: (C)
Consider the following logic circuit diagram.

Three floating point numbers $X, Y,$ and $Z$ are stored in three registers $RX, RY,$ and $RZ,$ respectively, in IEEE 754 single-precision format as given below in hexadecimal: \[ RX = 0xC1100000, \quad RY = 0x40C00000, \quad RZ = 0x41400000 \] Which of the following option(s) is/are CORRECT?