Using the following method, what are the values of the following expressions?
public static int f(int x) { int y = 4 * x; if(y < 10) return y; y++; return y / 6; }
Back to Review for Quiz 0