21.
What will be the output of the following code:
my_tuple = (1, 2, 3)
my_tuple[1] = 4
print(my_tuple)

25.
What is the purpose of the count() method for lists and tuples?