Vidyalelo
Python · Q37

MCQs on Python Tuples: Exam

Programming · Python · question 37

Q37

Suppose t = (1, 2, 4, 3), which of the following is incorrect?

A.
print(t[3])
B.
t[3] = 45
Answer
C.
print(max(t))
D.
print(len(t))

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board