Q. What is the output of the following code?
Code:
chr(ord('A'))
β
Correct Answer: (B)
A
Explanation: The ord() function converts a character to ASCII and chr() converts the ASCII character to a character.