Q. What is the output of the following code?
Code:
x = 5 y = 2 print(x ** y)
β
Correct Answer: (A)
25
Explanation: ** is the exponentiation operator in Python, so 5 ** 2 = 25.