Examlex

Solved

What Output Does This While Loop Generate? J = 6;

question 43

Multiple Choice

What output does this while loop generate? j = 6;
While (j > 0)
{
System.out.print(j + ", ") ;
J--;
}


Definitions:

Related Questions