Examlex

Solved

How Many Times Is the Body of the Loop Below

question 7

Multiple Choice

How many times is the body of the loop below executed? int counter = 1;
While ( counter > 20 )
{
// body of loop
Counter = counter - 1;
} // end while


Definitions:

Related Questions