For which types can you use the + operator?
numeric primitives, String concatenation
-= is a …?
compound operator
Relational operators always result in a …?
boolean
What happens if you use the instanceof operator accross different class hierarchies?
compiler error
How is % called?
remainder operator / modulus operator
Can you use the increment operator for a final variable?
No.
What is the difference between the & and && operators?
&&: short-circuit => No unnecessary evaluations.