What is the value of degreesC after the following statements execute?
double degreesC, degreesF; degreesF = 122; degreesC = 5 / 9 * (degreesF - 32);
5050.000.0More information: Lesson 3.1.3
Evaluate the following integer expression and enter the answer in the textfield.
19 + 10 % 5
More information: Lesson 3.1.5
What is the output from the following loop?
int i = 10;
while (i >= 0)
System.out.println(i);
i--;
More information: Lesson 5.2.4