आउटपुट क्या है
What is the output
>>>max("what are you")
A
error
B
u
C
t
D
y
Explanation
The max() function returns the largest element in an iterable based on its lexicographical order (alphabetical order).
For the string "what are you", the largest character (based on ASCII values) is 'y'.
So, the output will be:
Answer: (D) y
Correct Answer: B) u