nerdexam
Python_Institute

PCPP-32-101 · Question #14

What does the term deserialization mean? (Choose the best answer.)

The correct answer is D. It is a process of converting the structure of an object into a stream of bytes. Deserialization is the process of converting a sequence of bytes (or another data format) back into a Python object. This is the opposite of serialization, which converts a Python object into a stream of bytes.

Working with Files

Question

What does the term deserialization mean? (Choose the best answer.)

Options

  • AIt is a process of creating Python objects based on sequences of bytes
  • BIt is a process of assigning unique identifiers to every newly created Python object
  • CIt is another name for the data transmission process
  • DIt is a process of converting the structure of an object into a stream of bytes

How the community answered

(50 responses)
  • A
    6% (3)
  • B
    2% (1)
  • C
    2% (1)
  • D
    90% (45)

Explanation

Deserialization is the process of converting a sequence of bytes (or another data format) back into a Python object. This is the opposite of serialization, which converts a Python object into a stream of bytes.

Topics

#deserialization#serialization#byte streams#pickle

Community Discussion

No community discussion yet for this question.

Full PCPP-32-101 Practice