Q5Multiple correct3 Marks31 Aug 2025
Consider the following snippet of code: select all that apply.
```
t1 = (1, 2, 3)
t2 = (4, 5, 6)
t3 = t1 + t2
t4 = (t1, t2)
print(t3[2:5])
print(len(t4))
print(5 in t2)
try:
t1[0] = 10
except:
t1 = t3[0]
print(t1)
```