Multiple Choice
What is the output of the following?
Def to_upper(k) :
Return k.upper()
X = ['ab', 'cd']
Print(list(map(to_upper, x) ) )
A) [„AB?, „CD?].
B) [„ab?, „cd?].
C) none of the mentioned
D) error
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q33: What is the output of the following?<br>Elements
Q34: Program code making use of a given
Q35: What is the output of the following
Q36: What is the output of the following
Q37: What is the output of the following
Q39: What is the output of the following
Q40: What is the length of sys.argv?<br>A)number of
Q41: What is the output of the following
Q42: What data type is the object below?<br>L
Q43: What is the output of the following