Vidyalelo
Python · Q1

Python Operator Precedence: MCQs for Exam Prep

Programming · Python · question 1

Q1

What is the result of 10 / 2 * 3 ?

A.
15
Answer
B.
30
C.
5
D.
6

Answer: Option A

Solution

Answer: Option A
Solution:
Multiplication and division have the same precedence and are evaluated left to right.