Multiple Choice
What is the output of the code fragment given below?
Int i = 0;
Int j = 0;
While (i < 125)
{
I = i + 2;
J++;
}
System.out.println(j) ;
A) 0
B) 62
C) 63
D) The code fragment displays no output because it does not compile.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q116: Insert a statement that will correctly terminate
Q117: Which of the following conditions can be
Q118: What will be the final output of
Q119: Which of the following loop(s) should be
Q120: How many times will the output line
Q122: What is the output of the code
Q123: Which loop does not check a condition
Q124: How many times does the following code
Q125: What does the following code do?<br>Int sum
Q126: Which of the loop(s) test the condition