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)- A6% (3)
- B2% (1)
- C2% (1)
- D90% (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.