adplus-dvertising
frame-decoration

Question

Pick the correct statement regarding pickle and marshal modules.

a.

The pickle module supports primarily .pyc files whereas marshal module is used to sterilize Python objects

b.

The pickle module keeps track of the objects that have already been sterilized whereas the marshal module does not do this

c.

The pickle module cannot be used to sterilize user defined classes and their instances whereas marshal module can be used to perform this task

d.

The format of sterilization of the pickle module is not guaranteed to be supported across all versions of Python. The marshal module sterilization is compatible across all the versions of Python

Answer: (b).The pickle module keeps track of the objects that have already been sterilized whereas the marshal module does not do this

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Pick the correct statement regarding pickle and marshal modules.

Similar Questions

Discover Related MCQs

Q. What is the output of the line of code shown below?
pickle.HIGHEST_PROTOCOL

Q. Which of the codes shown below will result in an error?

Given that:
object = ‘a’

Q. Which of the following functions can be used to find the protocol version of the pickle module currently being used?

Q. All modular designs are because of a top-down design process? True or False?

Q. Which of the following isn’t true about main modules?

Q. Which of the following is not a valid namespace?

Q. Which of the following is false about “import modulename” form of import?

Q. Which of the following is false about “from-import” form of import?

Q. Which of the statements about modules is false?

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?