Given the fragment:
int[] array = { 1, 2, 3,
4, 5 };
System.arraycopy(array,
2, array, 1, 2);
System.out.print(array[1]);
System.out.print(array[4]);
What is the
result?
A.
14
14
B.
15
15
C.
24
24
D.
25
25
E.
34
34

Nessun commento:
Posta un commento