Answer Posted / qim2010
Serialization is a process of reading or writing an object.
It is a process of saving an object’s state to a sequence of
bytes, as well as a process of rebuilding those bytes back
into a live object at some future time. An object is
marked serializable by implementing the java.io.Serializable
interface, which is only a marker interface -- it simply
allows the serialization mechanism to verify that the class
can be persisted, typically to a file.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is exe file in java?
Where is java installed?
What is web container in java?
Explain issues of old java date api?
What is the difference between collection and stream?
What is flatmap in java8?
Which version of jdk is required for netbeans 8.0 2?
What is the means of java?
What is transaction management in java?
How can I swap two variables without using a third variable?
What are the advantages of lambda functions?
Write a class which checks whether a given number is prime or not. Write another class to implement the behavior of previous class and print the series of twin prime number upto a given range.
How do I run a java project in netbeans?
program A and B are analysed and found to have worst case running time greater than 150NlogN and N*N respectively. which program has the better guarantee after the running time for the large values of N(N>10000)? which program has the better guarantee for the running time of small program N (N<100)? which program will run faster on average for N=1000?
What is a driver in java?