Assume that a is an array of two or more integers, and that b and c are integers.
What is the result of the following code? (2 points)
c = 0;
b = 1;
if (a.length > 0) {
c = a[0];
}
while (b < a.length){
if (a[b] < c) {
c = a[b];
}
b++;
}
b contains the highest value in the array
b contains the lowest value in the array
c contains the highest value in the array
c contains the lowest value in the array
An endless loop occurs