228k views
1 vote
What is the output after this code snippet runs?

int[] scores = {80, 92, 91, 68, 88}; for(int i = 0; i < scores. Length; i--) { System. Out. Println(scores[i]); }

User Ryuku
by
7.4k points

1 Answer

5 votes

The output of this code snippet is an infinite loop that prints out the elements of the integer array scores in reverse order. The loop condition is i < scores.length, which is always true since i starts at 0 and is decremented in each iteration of the loop. Therefore, the loop will continue to run indefinitely, printing out the elements of the scores array in reverse order, starting with 88, then 68, 91, 92, and finally 80. After 80 is printed, the loop will start again from the end of the array, printing 88, 68, 91, 92, 80, and so on, infinitely.

User Lzzluca
by
8.0k points