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