Q. What will be the output of `print(2 ** 3 ** 2)`?
β
Correct Answer: (B)
512
Explanation: Python evaluates right to left for exponentiation: 3 ** 2 = 9, then 2 ** 9 = 512.