C-16-Q127mediumsingle_mcq
After x = '5' and y = int(x) + 3, the value of y is:
After x = '5' and y = int(x) + 3, the value of y is:
- a'53'
- b8
- c
After x = '5' and y = int(x) + 3, the value of y is:
int(x) converts the string '5' into the integer 5, and adding 3 gives . Because the conversion makes both values numeric, the result is the number 8, not a concatenated string.