InterviewSolution
Saved Bookmarks
| 1. |
What type of members are not serialized?(a) Private(b) Protected(c) Static(d) ThrowableThis question was addressed to me in unit test.I want to ask this question from Serialization in chapter Serialization & Networking of Java |
|
Answer» CORRECT ANSWER is (c) STATIC The BEST explanation: All static and transient VARIABLES are not serialized. |
|