Class 11 CS Chapter 9 Back Exercise Part A Solutions Sumita Arora New Syllabus / Listing11CSSA, Uncategorized / By Neha 10. Try to find out if for any case, the string functions isalnum( ) and isalpha( ) return the same result. ...click here for answer 11. Suggest appropriate functions for the following tasks : ...click here for answer 9. Which functions would you choose to use to remove leading and trailing white spaces from a given string ? ...click here for answer 8. What would following expression return ? ...click here for answer 7. From the string S = “CARPE DIEM”, which ranges return “DIE” and “CAR” ? 'DIE' is ...click here for answer 5. Can you say strings are character lists ? Why ? Why not ? ...click here for answer 6. Given a string S = “CARPE DIEM”. If n is length/2 (length is the length of the given string), then what would following return ? ...click here for answer 4. Which of the following is not a Python legal string operation ? Ans: (d) ...click here for answer 2 . Out of the following operators, which ones can be used with strings ? ...click here for answer 3. What is the result of following statement, if the input is ‘Fun’ ? # Output ...click here for answer 1. Write a Python script that traverses through an input string and prints its characters in different lines- two characters per line. ...click here for answer