int[] array = { 1, 2, 3, 4, 5, 6 }; int i = array.length - 1; while (i >= 0) { System.out.print(array[i]); i--; }What is the result?
A - 12345 B - 65432 C - 123456 D - 654321 E - An exception could be thrown at runtime. F - No output.Answer: D
More questions about Java 7 OCA 1z0-803?