Which one of the following circuits implements the Boolean function given below?
\[ f(x,y,z) = m_0 + m_1 + m_3 + m_4 + m_5 + m_6, \] where \(m_i\) is the \(i^{\text{th}}\) minterm.

Step 1: Write the minterms in binary form.
For variables \((x,y,z)\), the minterms included in the function are: \[ m_0(000),\; m_1(001),\; m_3(011),\; m_4(100),\; m_5(101),\; m_6(110). \]
Step 2: Use a 4:1 MUX realization.
A 4:1 multiplexer can implement a 3-variable Boolean function by taking two variables as select lines and expressing the output as a function of the remaining variable. Here, \(y\) and \(z\) are used as select lines \((s_1,s_0)\).
Step 3: Determine data inputs for each select combination.
\[ \begin{array}{c|c|c} y & z & f(x,y,z) \\ \hline 0 & 0 & 1 \\ 0 & 1 & 1 \\ 1 & 0 & x \\ 1 & 1 & x' \end{array} \] Thus, the required MUX inputs are: \[ I_0 = 1, I_1 = 1, I_2 = x, I_3 = x'. \]
Step 4: Match with the given options.
Option (A) exactly corresponds to the above configuration of the 4:1 multiplexer with correct data inputs and select lines. % Final Answer
Final Answer: \[ \boxed{\text{Option (A)}} \]
Consider the following logic circuit diagram.

Consider a 3-bit counter, designed using T flip-flops, as shown below. Assuming the initial state of the counter given by $PQR$ as $000$, what are the next three states? 

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.