

InterviewSolution
Saved Bookmarks
1. |
The expression 2**2**3 is evaluates as: (2**2)**3.(a) True(b) FalseI have been asked this question during a job interview.This question is from Precedence and Associativity topic in division Precedence and Associativity, Bitwise & Boolean of Python |
Answer» Correct answer is (b) False |
|