Q. What is the output of this code?
Code:
print('a' * 4)
β
Correct Answer: (A)
aaaa
Explanation: Multiplying a string by a number repeats the string.