Q. What will `print('abc' * 2)` output?
β
Correct Answer: (A)
abcabc
Explanation: The `*` operator repeats the string specified number of times.