Multiple Choice
What is the output of the following?
Elements = [0, 1, 2]
Def incr(x) :
Return x+1
Print(list(map(incr, elements) ) )
A) [1, 2, 3].
B) [0, 1, 2].
C) error
D) none of the mentioned
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q28: What is the output of the following
Q29: What is the output of the following
Q30: What is the output of the following
Q31: What is the output of the following
Q32: Which module in Python supports regular expressions?<br>A)re<br>B)regex<br>C)pyregex<br>D)None
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
Q38: What is the output of the following?<br>Def