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)
Assume that a 12-bit Hamming codeword consisting of 8-bit data and 4 check bits is $d_8 d_7 d_6 d_5 c_8 d_4 d_3 d_2 c_4 d_1 c_2 c_1$, where the data bits and the check bits are given in the following tables. Which one of the following choices gives the correct values of $x$ and $y$? 
If \( x \) and \( y \) are two decimal digits and \( (0.1101)_2 = (0.8xy5)_{10} \), the decimal value of \( x + y \) is \(\underline{\hspace{2cm}}\).

Consider the following code:
int a;
int arr[] = {30, 50, 10};
int *ptr = arr[10] + 1;
a = *ptr;
(*ptr)++;
ptr = ptr + 1;
printf("%d", a + arr[1] + *ptr);
In the diagram, the lines QR and ST are parallel to each other. The shortest distance between these two lines is half the shortest distance between the point P and the line QR. What is the ratio of the area of the triangle PST to the area of the trapezium SQRT?
Note: The figure shown is representative

Consider the following process information for Shortest Remaining Time First (SRTF) scheduling:
\[ \begin{array}{|c|c|c|} \hline \textbf{Process} & \textbf{Arrival Time (AT)} & \textbf{Burst Time (BT)} \\ \hline P1 & 0 & 10 \\ P2 & 1 & 13 \\ P3 & 2 & 6 \\ P4 & 8 & 9 \\ \hline \end{array} \]Find the turnaround time for each process.