Control Structures Quiz
star
star
star
star
star
Last updated almost 2 years ago
4 questions
1
What will the output of this control structure?
int loopCounter = 0;
do
{
out.println();
loopCounter++;
} while (loopCounter < 3);
What will the output of this control structure?
int loopCounter = 0;
do
{
out.println();
loopCounter++;
} while (loopCounter < 3);
1
What will the output of this control structure?
int loopCounter = 0;
do
{
out.println();
loopCounter++;
} while (loopCounter < 3);
What will the output of this control structure?
int loopCounter = 0;
do
{
out.println();
loopCounter++;
} while (loopCounter < 3);
1
1