Multiple Choice
How many times does the following loop run?
Int i = 0;
Int j = 1;
Do
{
System.out.println("" + i + ";" + j) ;
I++;
If (i % 3 == 0)
{
J--;
}
}
While (j >= 1) ;
A) 1 time
B) 2 times
C) 3 times
D) 4 times
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q9: What will be the output of the
Q10: Choose the loop that is equivalent to
Q11: What is the output of the following
Q12: What will be the result of running
Q13: What is the output of the code
Q15: What is the output of the following
Q16: What is the output of the code
Q17: What will be printed by the statements
Q18: What is the first and last value
Q19: The process of hand-tracing code is valuable