Answer:
you go to the what ever you use for the stuff i thing you want
Explanation:
Answer: II and III only
The first code will print starting with the second variable in the array. So it will start with array[1] instead of starting with array[0]
The second code will start from array[0] as the variable i is 0. It will print the first value in the array before proceeding to increment the value of i.
The third code will also start from array{0] as the program will check for the first value of a before proceeding to the next one.
An example would be if we were to define the array as:
int[] a = {1,2,3,4,5};
1st Code Output:
2
3
4
5
2nd Code Output:
1
2
3
4
5
3rd code Output:
1
2
3
4
5
Always remember that arrays will always begin from 0.