• Evaluation is from left to right
  • The operators of highest precedence in on the Top row and the lowest is on the bottom row.
  • To avoid confusion in evaluating mathematical operations, keep your expressions simple and use parenthesis.
  • Try the following
  • println(4+2*8);
    println(4+2*8/3*5);
    println(4+2*8/3-5);
    println(4+2*8/(3-5));