Q. What is the output of the following code?
Code:a = 'hello' print(a.upper())
β
Correct Answer: (A)
HELLO
Explanation: `upper()` returns the string in uppercase letters.