Q. What is the output of the following code?
Code:
print(3 ** 2)
β
Correct Answer: (B)
9
Explanation: `**` is the exponentiation operator. 3 ** 2 = 9.