CBSE Class 10 Computer Applications
Question 11 of 31
Python Revision — Question 9
Back to all questions 9
Question Question 9
What will be the output of
print (3*2)**2
- 81
- 18
- 36
- 12
36
Reason — The given expression (3*2)**2 is evaluated as follows:
= (3 * 2) ** 2
= 6 ** 2 (Since parentheses has higher precedence than exponentiation (**))
= 36
Thus, 36 is printed as output.