Look at the following code sample: int[] numbers = { 1, 2, 3…
Look at the following code sample: int[] numbers = { 1, 2, 3, 4, 5 }; int highest = numbers[0];for (int index = 1; index < numbers.Length; index++){ if (numbers[index] > highest) { highest = numbers[index]; }}What value will the highest variable contain when the loop finishes?
Read Details