Class 11 CS Chapter 11 Ex 11.1 Solutions Sumita Arora New Syllabus / Listing11CSSA, Uncategorized / By Neha 1. Why are lists called mutable types ? ...click here for answer 2 . What are immutable counterparts of lists ? ...click here for answer 3. What are different ways of creating lists ? ...click here for answer 4. What values can we have in a list? Do they all have to be the same type? ...click here for answer 5. How are individual elements of lists are accessed and changed ? ...click here for answer 6. How do you create the following lists ? ...click here for answer 8. Can you change an element of a sequence? What if the sequence is a string? What if the sequence is a list? ...click here for answer 9. What does a + b amounts to if a and b are lists ? ...click here for answer 11. What does a+b amount to if a is a list and b = 5 ? ...click here for answer 12. Is a string the same as a list of characters ? The meaning ...click here for answer 14. What is the difference between append() and insert() methods of list ? ...click here for answer 15. What is the difference between pop( ) and remove() methods of list? ...click here for answer 16. What is the difference between append( ) and extend() methods of list? ...click here for answer 17. How does the sort() work? Give example. ...click here for answer 18. What does list.clear( ) function do ? ...click here for answer 13. Which functions can you use to add elements to a list ? ...click here for answer 7. If a = (5, 4, 3, 2, 1, 0) evaluate the following expressions : ...click here for answer