A. It is used for object deserialization. इसका उपयोग ऑब्जेक्ट डिसीरियलाइज़ेशन के लिए किया जाता है।
B. It is used for object serialization. इसका उपयोग ऑब्जेक्ट सीरियलाइज़ेशन के लिए किया जाता है।
C. Both of the above. उपरोक्त दोनों
D. None of the above. उपरोक्त में से कोई नहीं
Correct Answer is :
A. It is used for object deserialization.
Explanation
In Python, "pickling" and "unpickling" refer to the serialization and deserialization of objects, respectively. Serialization is the process of converting a Python object into a byte stream, and deserialization is the process of reconstructing the original object from the byte stream.