232k views
5 votes
The process of writing in-memory objects to a file so that the object can later be read back into memory ___.

User Journeyman
by
5.8k points

1 Answer

2 votes

Answer:

serialization

Step-by-step explanation:

Serialization is basically the process of converting an object state to a stream of bytes that object can be read back into memory later, can be stored in (in a file etc), or can be transferred over a network or transmitted to memory, file etc. So the object state is saved in order to restart it later when needed.

User Thedp
by
5.3k points