Q. What is the output of the following code?
Code:
x = 5 y = 20 print(x * y)
β
Correct Answer: (A)
100
Explanation: * is multiply operator in python.