InterviewSolution
Saved Bookmarks
| 1. |
Which of these is a process of writing the state of an object to a byte stream?(a) Serialization(b) Externalization(c) File Filtering(d) All of the mentioned |
|
Answer» Right answer is (a) Serialization To elaborate: Serialization is the process of writing the state of an object to a byte stream. This is used when you want to save the state of your program to a persistent storage area. |
|