Multiple Choice
Which of the following loops will print the odd numbers between 0 and 20?
A) int num = 1;
While (num < 20)
{
System.out.print (num + " ") ;
Num += 2;
}
B) int num = 1;
While (num < 20)
{
System.out.print (num + " ") ;
Num ++;
}
C)
Int num = 0;
While (num < 20)
{
System.out.print (num + " ") ;
Num += 2;
}
D)
Int num = 1;
While (num < 20)
{
Num += 2;
System.out.print (num + " ") ;
}
Correct Answer:

Verified
Correct Answer:
Verified
Q72: Which of the following for loops is
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
Q90: What is the output of the code
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
Q96: Which of the following code snippets will