Vidyalelo
Python · Q38

Python Operator Precedence: MCQs for Exam Prep

Programming · Python · question 38

Q38

What are the values of the following Python expressions? 2**(3**2) (2**3)**2 2**3**2

A.
64, 512, 64
B.
64, 64, 64
C.
512, 512, 512
D.
512, 64, 512
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board