

InterviewSolution
Saved Bookmarks
1. |
Suppose t = (1, 2, 4, 3), which of the following is incorrect?(a) print(t[3])(b) t[3] = 45(c) print(max(t))(d) print(len(t)) |
Answer» Correct answer is (b) t[3] = 45 To explain: Values cannot be modified in the case of tuple, that is, tuple is immutable. |
|