C-16-Q136mediumsingle_mcq
If num1 = 3 and num2 = 4, what does print(num1 * num2) display?
If num1 = 3 and num2 = 4, what does print(num1 * num2) display?
- a7
- b12
- c34
- d'12'
ব্যাখ্যা
The * operator multiplies the two integers, so . Since both operands are integers, the result is the number 12, not a string or a sum.