In the following code snippet, when does the execution of the program switch from the inner loop to the outer loop
int i;
int j;
for (i = 0; i <= 9; i++)
{
for (j = 1; j < 5; j++)
{
System.out.println("Hello");
if (j == 2) {
j = 6;
}
}
}
a) When the value of j becomes 6
b) When the program executes completely
c) When the condition for the outer loop is met
d) When the value of i is incremented