What is the output of the following code snippet?
int j = 0;
while (j < 5) {
System.out.print(j + " ");
j += 2;
}
while (j < 5) {
System.out.print(j + " ");
j += 2;
}
A. 5 4 3 2 1
B. 2 4 6 8 10
C. 0 2 4
D. 0 1 2 3 4
Answer: Option C
Join The Discussion