PCPP-32-101 · Question #36
In the JSON processing context, the term serialization:
The correct answer is B. names a process in which a JSON string is turned into Python data. In the JSON processing context, the term serialization: A. names a process in which Python data is turned into a JSON string. Serialization refers to the process of converting a data object, such as a Python object, into a format that can be easily transferred over a network or…
Question
In the JSON processing context, the term serialization:
Options
- Anames a process in which Python data is turned into a JSON string
- Bnames a process in which a JSON string is turned into Python data
- Crefers to nothing, because there is no such thing as JSON serialization
- Dnames a process in which a JSON string is remodeled and transformed into a new JSON string
How the community answered
(40 responses)- A8% (3)
- B88% (35)
- C3% (1)
- D3% (1)
Explanation
In the JSON processing context, the term serialization: A. names a process in which Python data is turned into a JSON string. Serialization refers to the process of converting a data object, such as a Python object, into a format that can be easily transferred over a network or stored in a file. In the case of JSON, serialization refers to converting Python data into a string representation using the JSON format. This string can be sent over a network or stored as a file, and later deserialized back into the original Python data object.
Topics
Community Discussion
No community discussion yet for this question.