C-16-Q036mediumsingle_mcq
After age = 25, the statement that prints this value is:
After age = 25, the statement that prints this value is:
- a
print('age') - b
print(age) - c
show(age) - d
age.print()
ব্যাখ্যা
Passing the variable name without quotes, print(age), outputs the stored value 25. Writing print('age') would print the literal text "age" instead of the value.