the attributes of the three arithmetic operators in some programming language are given below operator precedence associativity arity high
+ high left Binary
- medium right binary
* low left binary
The value of the expression 2-5+1-7*3 in this language is
Answers
Answered by
1
Answer:
9
Explanation:
2 – 5 + 1 – 7 * 3
= 2 – 6 – 7 * 3
= 2 – (-1) * 3
= 3 * 3
= 9
Similar questions