

InterviewSolution
Saved Bookmarks
1. |
Which of the following is false about “import modulename” form of import?(a) The namespace of imported module becomes part of importing module(b) This form of import prevents name clash(c) The namespace of imported module becomes available to importing module(d) The identifiers in module are accessed as: modulename.identifier |
Answer» Correct answer is (a) The namespace of imported module becomes part of importing module The explanation: In the “import modulename” form of import, the namespace of imported module becomes available to, but not part of, the importing module. |
|