CW 02 - Expressions

DUE

Indicate the value and type of each of the following expressions. If the expression does not compile or causes a runtime exception, put an X.

You do not have to submit this work, but do it on your notebook so you can review it at any time.

Expressions

2 + 5

8 / 10 * 1.5

12 % 7

2 + 3 * 4

2 + 3.0 * 4

1 / 1 / 0

1.0 / 1 / 0

“Happy” + “Face”

“8+2” + “5”

“10” + 8 + 12

2 + 4 + "5" + 6
 
27 % 4