0
15kviews
Which operator has lowest priority?
1 Answer
written 3.0 years ago by |
Operator precedence determines the grouping of terms in an expression and decides how an expression is evaluated. Certain operators have higher precedence than others.
A) ++ - This operator falls under the category of Postfix and has the highest priority.
B) % - This operator falls under the category of Multiplicative and has the third highest priority.
C) + - This operator falls under the category of Unary and has the second highest priority.
D) | | - This operator falls under the category of Logical OR and has the lowest priority as compared to all the above-mentioned operators.