Examlex

Solved

What Is the Output of the Following Code Snippet

question 15

Multiple Choice

What is the output of the following code snippet?
Int i = 1;
While (i != 9)
{
System.out.print(i + " ") ;
I++;
If (i == 9)
{
System.out.println("End") ;
}
}


Definitions:

Related Questions