adplus-dvertising
frame-decoration

Question

Which of the statements about modules is false?

a.

In the “from-import” form of import, identifiers beginning with two underscores are private and aren’t imported

b.

dir() built-in function monitors the items in the namespace of the main module

c.

In the “from-import” form of import, all identifiers regardless of whether they are private or public are imported

d.

When a module is loaded, a compiled version of the module with file extension .pyc is automatically produced

Answer: (c).In the “from-import” form of import, all identifiers regardless of whether they are private or public are imported

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the statements about modules is false?

Similar Questions

Discover Related MCQs

Q. What is the order of namespaces in which Python looks for an identifier?

Q. Which of the following functions can be used to find the coordinated universal time, assuming that the datetime module has already been imported?

Q. The sleep function (under the time module) is used to:

Q. Which of the following functions helps us to randomize the items of a list?

Q. What is the interval of the value generated by the function random.random(), assuming that the random module has already been imported?

Q. Both the functions randint and uniform accept ____________ parameters.

Q. The randrange function returns only an integer value. State whether true or false.

Q. To obtain a list of all the functions defined under sys module, which of the following functions can be used?

Q. The output of the function len(sys.argv) is ____________

Q. Which of the following functions does not accept any arguments?

Q. Which of the following functions can accept more than one positional argument?

Q. Which of the following functions raises an error when an unpicklable object is encountered by Pickler?

Q. The pickle module defines ______ exceptions and exports _______ classes.

Q. Which of the following cannot be pickled?

Q. If __getstate__() returns _______________ the __setstate__() module will not be called on pickling.

Q. Lambda functions cannot be pickled because:

Q. The module _______________ is a comparatively faster implementation of the pickle module.

Q. The copy module uses the ___________________ protocol for shallow and deep copy.