1. State the order of evaluation of the operators in each of the following Java statements, and…
1. State the order of evaluation of the operators in each of the following Java statements, and show the value of x after each statement is performed: a) x = 7 + 3 * 6 / 2 1; b) x = 2 % 2 + 2 * 2 2 / 2; c) x = ( 3 * 9 * ( 3 + ( 9 * 3 / ( 3 ) ) ) );
2. Suppose that a, b, c and x are initialized as follows: a = 2, b = 3, c = 7 and x = 5. What is the value of y? y = ( a * x * x ) + ( b * x)