What is the result? Given the code fragment: What is the result? Given the code fragment: What is the result? A. 1324 B. 2413 C. 3142 D. 4231 Show Hint ← Previous question Next question →
cho The correct answer is 2313. Reply v10 yes I got the same thing 2313 Reply Sucuk Correcto hombrey, its indeedo 2313’o Reply
renko Answer: 2313 package q040; public class ForLoop { public static void main(String[] args) { int[][] n = {{1, 3}, {2,3}}; for (int row = n.length-1; row >= 0; row–) { for (int column : n[row]) { System.out.print(column); } } } } Reply
The correct answer is 2313.
yes I got the same thing 2313
Correcto hombrey, its indeedo 2313’o
Answer: 2313
package q040;
public class ForLoop {
public static void main(String[] args) {
int[][] n = {{1, 3}, {2,3}};
for (int row = n.length-1; row >= 0; row–) {
for (int column : n[row]) {
System.out.print(column);
}
}
}
}
2313