Serialisation-conversion of object into data stream , Synchronisation-thread safe
12
Anonymous
14 June 2019
Serialization is the process of writing an object into a file, the object is converted to a stream of data and is saved as content of the file. mostly the process is carried to send and receive object over network.
Synchronization is the process of allowing one thread for execution at a time, and this is achieved to make program thread safe.