A. It is used for object serialization इसका उपयोग ऑब्जेक्ट सीरिअलाइजेशन के लिए किया जाता है
B. It is used for object deserialization इसका उपयोग ऑब्जेक्ट डीसीरिअलाइजेशन के लिए किया जाता है
C. All of the mentioned उल्लिखित सभी
D. None of the mentioned उल्लिखित कोई नहीं
Correct Answer is :
A. It is used for object serialization
Explanation
Pickling is the process of serializing and deserializing a Python object structure. In Python, the pickle module provides a way to serialize Python objects into a format that can be saved to a file, transmitted over a network, or otherwise stored for later use. The serialized data can later be deserialized, reconstructing the original Python object hierarchy.