

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? x = 'abcd' for i in range(len(x)): print(i.upper()) |
A. | a b c d |
B. | 0 1 2 3 |
C. | error |
D. | 1 2 3 4 |
Answer» D. 1 2 3 4 | |