Vidyalelo
Python · Q28

Python MCQs: Variable Names and Operators Chapter

Programming · Python · question 28

Q28

Which one of the following has the same precedence level?

A.
Addition and Subtraction
Answer
B.
Multiplication, Division and Addition
C.
Multiplication, Division, Addition and Subtraction
D.
Addition and Multiplication

Answer: Option A

Solution

Answer: Option A
Solution:
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.