Java SE 8 Programmer 1Z0–808 Practice Full Test 1
© examsiri.com
Question : 12 of 84
Marks:
+1,
-0
Given the following main method:
public static void main(String[] args) {
int num = 5;
do {
System.out.print(num-- + " ");
} while (num == 0);
} What is the result ?
Go to Question: