InterviewSolution
Saved Bookmarks
| 1. |
Which of the following methods is not used while Serialization and DeSerialization?(a) readObject()(b) readExternal()(c) readWriteObject()(d) writeObject() |
|
Answer» The correct choice is (c) readWriteObject() Easy explanation: Using readObject(), writeObject(), readExternal() and writeExternal() methods Serialization and DeSerialization are implemented. |
|