

InterviewSolution
Saved Bookmarks
1. |
If a={5,6,7,8}, which of the following statements is false?(a) print(len(a))(b) print(min(a))(c) a.remove(5)(d) a[2]=45 |
Answer» The correct choice is (d) a[2]=45 Best explanation: The members of a set can be accessed by their index values since the elements of the set are unordered. |
|