Which of the following is true for the tuple t = (1, 2, [3, 4])?
Tuples cannot contain mutable objects like lists.
t[2][0] = 5 is a valid operation.
Tuples can be resized.
Tuples can only contain integers.
This question is part of this quiz :
Python Tuple ,sets and strings