Post

@PythonPr 110, as * has more precedence to alter the precedence we need to group with round brackets.
BODMAS
English

@PythonPr Answer: 110 — because * has higher precedence than +, so 10*10 is evaluated first, then 10 is added.
English

@PythonPr This is not a python quiz, it's an arithmetic question.
English

@PythonPr The output of the code is 110.
The calculation follows the standard order of operations (PEMDAS/BODMAS),where multiplication is performed before addition:
Step 1(Multiplication): 10x10=100
Step 2 (Addition): 10+100=110
Result: The print() function displays the result,which is 110
English







