What is the difference between serialization and
deserialization?
Answer Posted / arpitsen
Serialization and Deserialization are complementing to each
other.
Whenever the state of an Object is saved to some file, the
process is known as Serialization.
Deserialization is the process of creating the object back
from the serialized file.
| Is This Answer Correct ? | 25 Yes | 1 No |
Post New Answer View All Answers
Garbage collection in java?
What an i/o filter in java programming?
Define how does a try statement determine which catch clause should be used to handle an exception?
What is array length?
Explain wait() method of object class ?
What is the finalize method do?
What is the maximum size of array in java?
What is Java Reflection API? Why it’s so important to have?
What are untrusted applets?
How many types of parsers are there?
What is a numeric format?
Why we cannot override static method?
What are the advantages of functions?
Why is java multithreaded?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.