Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

take this quiz, you will need to use the ou must install the version of the RLB

ID: 3738287 • Letter: T

Question

take this quiz, you will need to use the ou must install the version of the RLB from the link below, as each dll Once you have downloaded and installed the browser, you will then need to launch it You only need to use the RLB for quizzes and exams. If you do not have the RLB, please download it from this link: Respondus Lockdown Browser e D I Question 6 1.5 pts the following array declaration, write a Java lop to print the values of the array foo in reverse, one item per line. int[] foo - new int (10e]: // code sould be here to fill the array with / meaningful values. Assume the array has // interesting values in tt. Paragraph

Explanation / Answer

Answer:
int[] foo = new int[100];

for(int i=foo.length-1;i>=0;i--) {
System.out.println(foo[i]);
}