1.List is mutable or immutable

2. It can be written as a list of comma-seperated item(value) between with

3. Which of the following function is used to count the number of element in a list.

4. Which of the following python function can be used to add more than one element within an existing list?

5. If list=[10,20,30,40,50] then list[2]=35 will result

6. mylist = ['apple', 'banana', 'cherry']
print(mylist[1])

7. List items cannot be removed after the list has been created

8. Select the correct function for returning the number of items in a list:
print(    (thislist))

9. what will be the result if the following syntax
mylist = ['apple', 'banana', 'cherry']
print(mylist[-1])

10. Values in the list are called