Multiple Choice
What is the output of the code snippet given below? String s = "abcde";
Int i = 1;
Do
{
If (i > 1)
{
System.out.print) ;
}
}
While (i < 5) ;
A) No output
B) No output (infinite loop)
C) abcde
D) bcde
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q72: Which of the following for loops is
Q85: What is the data type of the
Q86: What is the result when the following
Q87: What is the output of the code
Q89: When hand tracing, drawing a line through
Q89: Which of the following loops executes the
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
Q95: In the following code snippet, when does