Determine the order of execution
The operations written into an expression perform in a prescribed order.
- Operations of equal order perform from left to right.
- If an expression contains multiple operators or functions, group the conditions in parenthesis "( )". This ensures the correct order of execution, and makes it easier to read the expression.OrderOperation1()2function (...)3**4- (negate)5NOT6*,/,MOD7+,- (subtract)8<,<=,>,>=9=,<>10&,AND11XOR12OR
Provide Feedback