Take out a piece of paper and put your name on the upper right corner.
Answer the following questions:
What is the main difference between a while loop and a do..while loop?
Write a for loop that will print out all the multiples of 3 from 3 to 36, that is: 3 6 9 12 15 18 21 24 27 30 33 36.
What are the values of a, b, and c after the following code runs?
double a = 2.2;
int b = 7/3;
int c = (int) a + b * 2;
Finish your answers before the timer runs out.