Answer Posted / baskar
Introduction
Serialization is the process of saving an object in a
storage medium (such as a file, or a memory buffer) or to
transmit it over a network connection in binary form. The
serialized objects are JVM independent and can be
re-serialized by any JVM. In this case the "in memory" java
objects state are converted into a byte stream. This type of
the file can not be understood by the user. It is a special
types of object i.e. reused by the JVM (Java Virtual
Machine). This process of serializing an object is also
called deflating or marshalling an object.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can main() method in java can return any data?
How do you sort arraylist in descending order?
Explain where variables are created in memory?
Why is java not 100% pure oops?
How does java pattern compile work?
What is hash in java?
What is native code?
How would you format a date in java? I.e. In the ddmmyyy format?
Is heap stored in ram?
Name few java util classes introduced with java 8 ?
What is difference between module and function?
What do you mean by thread safe?
5 Coding best practices you learned in java?
what is the difference between process and thread? : Java thread
Can we access instance variables within static methods ?