K
Multiple choices 38/50
(Choose 1 answer)
A u. T. z. w. a. d
B. None of the others
Cu. T. w.z', 'a', d
D. u. t. w. z', 'a', 'd'
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
43 44 45 46 47 48 49 50
Study the code:
(1) public static void F(char a[], int I, int J)(
(2) if (I = J) return;
(3) char t= a[1]; a[i]=a[J]; a[J] = t
(4) F (a, I+1, J-1);
If the array a (index begins from 0) contains values 'd', 'a', 'w','z', 't', 'u', F(a,0,5) is called, values in the array will be changed to
(5)}