Which one of the following has the same precedence level?
A. Addition and Subtraction
B. Multiplication, Division and Addition
C. Multiplication, Division, Addition and Subtraction
D. Addition and Multiplication
Answer: Option A
Solution (By Examveda Team)
In Python, Addition (+) and Subtraction (-) operators have the same precedence level.Multiplication (*) and Division (/) operators have a higher precedence than Addition and Subtraction.
When an expression contains operators with the same precedence, they are evaluated from left to right.
For example, in the expression 3 + 5 - 2, the addition and subtraction are performed from left to right.
can you explain is once