Beginner
Python
Q24 / 101
What is the output of: 2 ** 3 in Python?
Correct! Well done.
Incorrect.
The correct answer is C) 8
C
Correct Answer
8
Explanation
** is the exponentiation operator in Python. 2 ** 3 = 2³ = 8.
Progress
24/101