Multiple Choice
How many times does the loop execute in the following code fragment?
Int i;
For (i = 0; i < 50; i = i + 4)
{
System.out.println(i) ;
}
A) 11
B) 12
C) 13
D) 14
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q95: In the following code snippet, when does
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
Q101: When will the loop in the following
Q102: What is the output of the code
Q103: What does the following code snippet display?
Q104: What is the output of this loop?<br>Int
Q105: Which of the following loops will print