InterviewSolution
Saved Bookmarks
| 1. |
Explain Object Serialization? |
|
Answer» A serialized object represents the type of DATA stored in the object, its INFORMATION. Object serialization is a process of reading or writing an entire object from a file. This helps in saving session state information by servlets, for SENDING PARAMETERS for Remote Method Invocation (RMI) calls. A serialized object represents the type of data stored in the object, its information. Object serialization is a process of reading or writing an entire object from a file. This helps in saving session state information by servlets, for sending parameters for Remote Method Invocation (RMI) calls. |
|