Examveda

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.

This Question Belongs to Python Program >> Variable Names And Operators

Join The Discussion

Comments (1)

  1. Sai Ganesh
    Sai Ganesh:
    1 year ago

    can you explain is once

Related Questions on Variable Names and Operators