Examveda
Examveda

What is the result of the following code snippet?

int i = 1;
while (i <= 5) {
System.out.print(i + " ");
i++;
}

A. 5 4 3 2

B. 5 4 3 2 1

C. 1 2 3 4

D. 1 2 3 4 5

Answer: Option D


This Question Belongs to Java Program >> Flow Control

Join The Discussion

Related Questions on Flow Control