Pregunta de entrevista de IonIdea

Define serialisation, synchronisation?

Respuestas de entrevistas

Anónimo

14 nov 2018

Serialisation-conversion of object into data stream , Synchronisation-thread safe

12

Anónimo

14 jun 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.