Q. What will `print('abc' * 2)` output? (A) abcabc (B) abc*2 (C) 2abc (D) abcabcabc ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) abcabc Explanation: The `*` operator repeats the string specified number of times.