Q. What is the output of this code?
Code:
print('abc'.upper())
β
Correct Answer: (A)
'ABC'
Explanation: `upper()` converts string to uppercase.