Precedence of operators

A very important issue has to do with the actual order in which operations are performed when two or more operators are used in the same expression.

For example, consider the following expression:

(2*a + 3)

Two ways to evaluate

There are two different ways that this expression could be evaluated:

The value of the result will depend heavily on the order in which the operations are performed.