What is the output of the following code snippet?
int j = 0;
while (j System.out.print(j + " ");
j += 2;
}
while (j System.out.print(j + " ");
j += 2;
}
What is the output of the following code snippet?int j = 0; Correct Answer 0 2 4
while (j System.out.print(j + " ");
j += 2;
}
মোঃ আরিফুল ইসলাম
Feb 20, 2025