int('101') का output क्या होगा?
What will be the output of int('101')?
A
101
B
5
C
Error
D
1
Explanation
-
English:
int('101')converts the string'101'into an integer → 101 (base 10). -
हिंदी:
int('101')एक string'101'को पूराांक (integer) में बदलता है → 101 (दशमलव प्रणाली में)।
Correct Answer: A) 101