Java 1
Question 16
Examine the following code:

int count = 0;
while ( count <= 6 )
{
System.out.print( count + " " );
count = count + 3;
}
System.out.println( );

What does this code print on the monitor?

a. 1 2 3 4 5 6
b. 0 1 2 3 4 5 6
c. 0 3 6
d. 0 1 2 3 4 5
e. 0 3