C-16-Q064mediumsingle_mcq
After x = int(1), the value of x is:
After x = int(1), the value of x is:
- a1
- b1.0
- c'1'
- dTrue
ব্যাখ্যা
int(1) simply converts the integer 1 to an integer, leaving its value unchanged. Thus x equals 1.
After x = int(1), the value of x is:
int(1) simply converts the integer 1 to an integer, leaving its value unchanged. Thus x equals 1.