What is the result of the following operation? ['A', 'B', 'C'] * 3
What is the result of the following operation?
['A', 'B', 'C'] * 3
a. The operation cannot be performed. You cannot multiply an object of type list by an object of type int.
b. [‘A’, ‘B’, ‘C’, ‘A’, ‘B’, ‘C’, ‘A’, B’, ‘C’]
c. [‘A’, ‘B’, ‘C’, 3]
d. [‘AAA’, ‘BBB’, ‘CCC’]
e. [‘A’, ‘B’, ‘C’]