•When the Java interpreter evaluates an expression, it performs the various operations in an order specified by
–the parentheses in the expression
–the precedence of the operators
–the associativity of the operators.
•Before any operation is performed, however, the interpreter first evaluates the operands of the operator.
• The interpreter always evaluates operands in order from left to right.
• This matters if any of the operands are expressions that contain side effects