InterviewSolution
Saved Bookmarks
| 1. |
Explain Serialization and Deserialization in Java? |
|
Answer» The process of converting an object into BYTE sequence that can be persisted to a disk or can be sent through streams is CALLED SERIALIZATION. The reverse process of Serialization, i.e. creating objects from a sequence of bytes is called deserialization. |
|