Multiple Choice
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") ;
}
}
A) When the value of j becomes 5
B) When the program executes completely
C) When the condition for the outer loop is met
D) When the value of i is incremented
Correct Answer:

Verified
Correct Answer:
Verified
Q89: Which of the following loops executes the
Q90: What is the output of the code
Q91: Which of the following loops will print
Q92: What is the output of the code
Q93: What does the method below return?<br>Int findSomething
Q96: Which of the following code snippets will
Q97: Which of the following is the correct
Q98: Which of the following code snippets displays
Q99: What is the output of the code
Q100: How many times does the loop execute