

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown? l=[1, -2, -3, 4, 5] def f1(x): return x |
A. | [1, 4, 5 ] |
B. | Error |
C. | [-2, -3] |
D. | [1, -2, -3] |
Answer» E. | |