InterviewSolution
| 1. |
What Do You Mean By Persistent And Non Persistent Objects? |
|
Answer» Persistent objects are the ONES which we can be SERIALIZED and written to disk, or any other stream. So before stopping your application, you can serialize the object and on RESTART you can deserialize it. [ Drawing applications usually USE serializations.] Persistent objects are the ones which we can be serialized and written to disk, or any other stream. So before stopping your application, you can serialize the object and on restart you can deserialize it. [ Drawing applications usually use serializations.] |
|