Class 11 IP chapter 3 Back Exercise Part A Solutions Sumita Arora / Listing11IPSA, Uncategorized / By Neha 2. How are keywords different from identifiers ? Keywords are ...Read solution here 3. What are literals in Python ? How many types of literals are allowed in Python ? Literals are ...Read solution here 4. Can nongraphic characters be used in Python ? How ? Give examples to support your answer. Yes nongraphic ...Read solution here 5. How are floating constants represented in Python ? Give examples to support your answer. Floating constants ...Read solution here 6. How are string-literals represented and implemented in Python ? String literals ...Read solution here 7. W hich of these is not a legal numeric type in Python ? (a) int ( b ) float (c) decimal. decimal is ...Read solution here 8. Which argument of print( ) would you set for : (i) changing the default separator (space) ? (ii) printing the following line in current line ? i) to ...Read solution here 9. What are operators ? What is their function ? Give examples of some unary and binary operators. Operators are ...Read solution here 10. What is an expression and a statement ? An expression ...Read solution here 11. What all components can a Python program contain ? A python ...Read solution here 12. What do you understand by block/code block/suite in Python ? A group ...Read solution here 13. What is the role of indentation in Python ? Indentation is ...Read solution here 14. What are variables ? How are they important for a program ? Variables are ...Read solution here 15. What do you understand by undefined variable in Python ? Any variable ...Read solution here 16. What is Dynamic Typing feature of Python ? In python ...Read solution here 17. W hat would the following code do : X = Y = 7 ? It will ...Read solution here 18. What is the error in following code : X , Y = 7 ? The error ...Read solution here 19. Following variable definition is creating problem X = 0281, find reasons. The error ...Read solution here 20. “Comments are useful and easy way to enhance readability and understandability of a program. Elaborate with examples. Comments help ...Read solution here