

MCQOPTIONS
Saved Bookmarks
1. |
Suppose a tuple arr contains 10 elements. How can you set the 5th element of the tuple to 'Hello'? |
A. | arr[4] = 'Hello' |
B. | arr(4) = 'Hello' |
C. | arr[5] = 'Hello' |
D. | Elements of tuple cannot be changed |
Answer» E. | |