|
Which statements would cause a compilation error if inserted in the location indicated in the following program?
public class ParameterUse {
static void main(String[] args) {
int a = 0;
final int b = 1;
int[] c = { 2 };
final int[] d = { 3 };
useArgs(a, b, c, d);
}
static void useArgs(final int a, int b, final int[] c, int[] d) {
// INSERT STATEMENT HERE.
}
}
Select the two correct answers.
a++; b++; b = a; c[0]++; d[0]++; c = d;
|