When an arithmetic expression contains two or more different operators, such as * and , the order in which the operations is done is determined by: Operator precedence
Precedence is known to be a kind of rule that tells the order in which a specific operations need to be carry out in an arithmetic expression.
The precedence of an operator specifies how tightly it binds two arithmetic expressions together.
In the arithmetic expression 4 + 5 * 3 , the answer is 19 and not 27 because the multiplication (*) operator has a higher precedence than the addition (+) operator.
Operator associativity is nothing but how operators of the same precedence are evaluated in an arithmetic expression. It can be either from left to right or right to left.
Therefore, when an arithmetic expression contains two or more different operators, such as * and , the order in which the operations is done is determined by: Operator precedence
Learn more about operator precedence here:
https://brainly.com/question/27961595
#SPJ4