Class 11 IP Chapter 9 Back Exercise Part B Solutions Sumita Arora New Syllabus / Listing11IPSA, Uncategorized / By Neha 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