Examveda
Examveda

What is the output of the following code snippet?

for (int m = 0; m < 5; m++) {
if (m == 2) {
continue;
}
System.out.print(m + " ");
}

A. 0 2 4

B. 2 4

C. 0 1 3 4

D. 0 1 2 3 4

Answer: Option C


This Question Belongs to Java Program >> Flow Control

Join The Discussion

Related Questions on Flow Control