Q49
What is the result of 3 ** 2 // 3 ?
A.
1
AnswerB.
3
C.
2
D.
27
Answer: Option A
Solution
Answer: Option A
Solution:
Exponentiation has higher precedence, so 3 ** 2 is evaluated first, then floor division.