1.
Q12: Assume the following given declarations:
int [] beta = {12, 24, 36, 48, 60};
Evaluate these statements:
beta[2] = beta[beta[4] / beta[0] - 1];
beta[1] = beta[3] - beta[1] + 6;
beta[3] = beta[beta[4] % beta[0]];
Give the contents of array
beta
after the execution of the above statements:beta[0] =
beta[1] =
beta[2] =
beta[3] =
beta[4] =