 
		
	For each expression in the left-hand column, indicate its value in the right-hand column. Be sure to list a constant of appropriate type (e.g., 7.0 rather than 7 for a double, Strings in quotes).
| 1 + 9 / 2 * 2.0 | 9.0 | |
| 5.0 / (3125 % 2) + 2 * (5 / 3) | 7.0 | |
| 6 % 17 + 9 % 3 + 22 / 4 / 2.0 | 8.5 | |
| "[" + 2 + 4 * 2.0 + "]" + 3 | "[28.0]3" | |
| !(3 < 2) && (4.3 > 3 || 3 < 2) | true |