Report Bug
Qus : What will be the output of this code? print(2 ** 3)
Qusइस कोड का आउटपुट क्या होगा? print(2 ** 3)

A. 6
B. 8
C. 9
D. 11


Solution
B. 8



Explanation
<p>** is the exponentiation operator in Python.</p><p>2 ** 3 means 2 raised to the power of 3, which is: 8</p>



Report Bug