Question 22 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 22 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

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?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E.

D.