Which XXX and YYY correctly complete the code to find the ma…
Which XXX and YYY correctly complete the code to find the maximum score? Choices are in the form XXX / YYY.int[] scores = {43, 24, 58, 92, 60, 72};int maxScore;maxScore = scores[0]; for (XXX) { if (num > maxScore) { YYY; }}
Read Details