A 4-to-1 MUX outputs one of the four inputs $A_0, A_1, A_2, A_3$ based on the select lines
\[
S_1 = C,\qquad S_0 = D.
\]
We want the output to be:
\[
\text{OUTPUT} = C \oplus D.
\]
Step 1: Write the truth table for XOR.
\[
\begin{array}{c c | c}
C & D & C \oplus D \\
\hline
0 & 0 & 0 \\
0 & 1 & 1 \\
1 & 0 & 1 \\
1 & 1 & 0 \\
\end{array}
\]
Step 2: Match select inputs to MUX inputs.
The MUX mapping is:
\[
S_1 S_0 = CD:
\]
\[
00 \rightarrow A_0,\quad 01 \rightarrow A_1,\quad 10 \rightarrow A_2,\quad 11 \rightarrow A_3.
\]
Thus, to generate XOR:
\[
A_0 = 0,\quad A_1 = 1,\quad A_2 = 1,\quad A_3 = 0.
\]
These values match option (C).
Final Answer: $A_0 = 0,\; A_1 = 1,\; A_2 = 1,\; A_3 = 0$