Class 11 IP Chapter 9 Introducing Python Modules Solutions Sumita Arora New Syllabus / Uncategorized / By Neha Exercise 9.1 5. Python functions can be divided into three categories. What are these ? ...click here for answer 1. What is a function ? ...click here for answer 2. What is a module ? ...click here for answer 3. How are modules useful in a programming language ? ...click here for answer 4. What is the role of an argument of a function ? ...click here for answer 6. What all can a Python module contain ? A Python ...click here for answer 7. What is the file extension of a Python module ? ...click here for answer 8. What are docstrings ? What is their significance ? ...click here for answer Back Exercise Part A No posts found. Back Exercise Part B 2. Create module tempConverion.py as given in Fig. 9.3 in the chapter. If you invoke the module with two different types of import statements, how would the function call statement for imported module’s functions be affected ? # tempconversion.py ...click here for answer 5 . Import the above module basics.py and write statements for the following : ...click here for answer 4. After importing the above module, some of its functions are executed as per following statements. Find errors, if any : ...click here for answer 1. Find the errors in following function definitions : ...click here for answer 3. A function checkMain( ) defined in module Allchecks.py is being used in two different programs. In program 1 as Allchecks.checkMain(3, āA’) and in program 2 as checkMain(4, āZā) Why are these two function-call statements different from one another when the function being invoked is just the same ? In program ...click here for answer Back Exercise Part C 1. Define a function called immy which prints the ASCII art below every time it’s called : ...click here for answer 2. Create a module with functions for future value, present value and compound interest. ...click here for answer