Q. What is the output of `print('abc'.upper())`?
β
Correct Answer: (A)
ABC
Explanation: `upper()` converts all characters in a string to uppercase.