11. What is the output of the following code snippet?
int j = 0;
while (j < 5) {
System.out.print(j + " ");
j += 2;
}
int j = 0;
while (j < 5) {
System.out.print(j + " ");
j += 2;
}