1.

What is the output of the line of code shown below? list(map((lambda x:x**2), filter((lambda x:x%2==0), range(10))))

A. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
B. [0, 4, 16, 36, 64]
C. Error
D. No output
Answer» C. Error


Discussion

No Comment Found