Question 75 of 76 from exam 1Z0-808: Java SE 8 Programmer I
Question
Given the code fragment:
![int n [] [] iil, 3}, {2, 3}
for (int i n.length-1; i >= 0; i--) {
for (int y : n[i]) {
system.out.print (y);
}](https://eaeastus2.blob.core.windows.net/optimizedimages/static/images/Java-SE-8-Programmer/question/img0008700001.png)
What is the result?
Answers
Explanations
Click on the arrows to vote for the correct answer
A. B. C. D.C.
Given the code fragment:
What is the result?
Click on the arrows to vote for the correct answer
A. B. C. D.C.