Step 1: Understanding the Runge-Kutta method.
The Runge-Kutta method of order 2 satisfies:
\[
y_n = y_{n-1} + a k_1 + b k_2,
\]
where \( k_1 \) and \( k_2 \) involve weighted evaluations of \( f(x, y) \). The coefficients \( a, b, \alpha, \beta \) determine the order and accuracy of the method.
Step 2: Verifying the choice.
For \( a = 0.25, b = 0.75, \alpha = 2/3, \beta = 2/3 \), the method satisfies the conditions for the second-order accuracy:
\[
a + b = 1, \quad b \cdot \beta = \frac{1}{2}.
\]
Step 3: Conclusion.
The correct choice of coefficients is \( {(3)} \): \( a = 0.25, b = 0.75, \alpha = 2/3, \beta = 2/3 \).