InterviewSolution
Saved Bookmarks
| 1. |
What is serialization? |
|
Answer» When we WANT to transport an object through network then we need to convert the object into a stream of BYTES. Serialization is a process to convert a COMPLEX objects into stream of bytes for storage (database, file, cache, etc) or transfer. Its main purpose is to save the state of an object. Types of Serialization: Serialization is of following types:
Serialization is used in the following purposes:
|
|