what is meant by serialization?

Answers were Sorted based on User's Feedback



what is meant by serialization?..

Answer / ranganathkini

Serialization is the process of translating a state of an
object into a stream of bytes.

The process of reconstructing an object from a stream of
bytes that represent its serialized state is called
de-serialization.

Serialization is mostly used when the state of objects have
to be written to persistent storage for later retrieval or
for transfer over a network.

Is This Answer Correct ?    60 Yes 4 No

what is meant by serialization?..

Answer / animesh

Serialization is the process of storing object properties.
To avoid serialization we use transient modifier.

Is This Answer Correct ?    9 Yes 2 No

what is meant by serialization?..

Answer / shakir khan

serialization is the mechanism by which youcan save
the state of an object by converting in to a byte stream.

Is This Answer Correct ?    13 Yes 7 No

what is meant by serialization?..

Answer / arpit

Serialization is used for persistence it is done by
implementing serializable interface which is a wrapper
class does not have any method

Is This Answer Correct ?    5 Yes 1 No

what is meant by serialization?..

Answer / lala

serialization is the process of storing object in byte
Stream over network or file.to avoid serialization we have
to declare the variable as trasient.Inorder to make object
serialisation class implement serilazable
interface.Serializable Interface is an Marker
interface.Marker interface doesn't contain any method.so
how it works? it will call the object class methods.

Is This Answer Correct ?    4 Yes 2 No

what is meant by serialization?..

Answer / ravikiran

Serialization is the process of saving the object state
into an output stream

Is This Answer Correct ?    3 Yes 3 No

what is meant by serialization?..

Answer / abilash

Serialization is a Process of translating a state of object
into a stream of bytes.

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Core Java Interview Questions

If there are two notepad opened and working on it . is this a process or thread? computer based Live Example to differentiate between Thread , Process , and Multi tasking ?

3 Answers   TCS, Wipro,


Explain covariant method overriding in java.

0 Answers  


explain about method overloading and method overriding with difficult examples

4 Answers  


What is the different between get and post?

0 Answers  


What does the ‘static’ keyword mean? Is it possible to override private or static method in java?

0 Answers  






What is object

6 Answers  


why we are calling j2se why not j1se or j3se or j4se..etc is there any reason.. can u please explain it... i shocked in my interview when they asked this question please explain ans

2 Answers   Infosys,


How can u increase the heap size in the memory?

0 Answers   Infosys,


How to stop a thread in java? Explain about sleep () method in a thread?

0 Answers  


What about main thread in java?

0 Answers  


what are the analysis of an object

2 Answers  


Which method must be implemented by all threads?

0 Answers  


Categories