Fill In the Blanks For List Manipulation Class 11 Computer Science (CS), Informatics Practices (IP)


1. Lists are _____ data types and thus their values can be changed.

2. To create an empty list, function _____ can be used.

3. The _____ operator adds one list to the end of another list.

4. The _____ operator replicates a list.

5. To check if an element is in list, _____ operator is used.

6. To delete a list slice from a list _____ is used.

7. The _____ function is used to insert element at a designated position in a list.

8. The _____ function is used to delete element to remove an element from designated index in a list.

9. The _____ function can append a list of elements to a list.

10. The _____ function sorts a list and makes changes in the list.

11. The _____ function sorts a list and returns another list.


Answer :-

1. mutable
2. list()
3. +
4. *
5. in
6. del statement
7. insert
8. pop()
9. extend
10. sort
11. sorted()

1 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post