What is serializable interface?

Answers were Sorted based on User's Feedback



What is serializable interface?..

Answer / manish mathur

Serializable interface is used to create classes which
enable the transfer of any binary object over a
communication channel by transferring all the data of the
object in a byte by byte manner.

Is This Answer Correct ?    94 Yes 11 No

What is serializable interface?..

Answer / ravikiran(aptech mumbai)

serializable interface is a marker interface which has no
methods at all

Is This Answer Correct ?    64 Yes 8 No

What is serializable interface?..

Answer / manish mathur(a3logics ,jaipur

Serialization is the process of writing complete state of
java object into output stream, that stream can be file or
byte array or stream associated with TCP/IP socket.

Is This Answer Correct ?    41 Yes 11 No

What is serializable interface?..

Answer / prakash

serialization is the interface that convert object into byte
stream. and this objects saved to local discs by
ObjectOutputStream and ObjectInputStream.and this Object can
be send over the network.

Is This Answer Correct ?    23 Yes 8 No

What is serializable interface?..

Answer / narendravarma mallapuraju

Serializable interface is implemented by a class ,whose
objects state can be saved into any outputstream .This is
mainly useful in RMI[Remote Method Invocation] .

Is This Answer Correct ?    19 Yes 8 No

What is serializable interface?..

Answer / murugan

serialization is the interface, which is used to serialize
(convert object into byte )the object, we can use this in
the situation for result pass over to any medium like
output stream,writer,bytearrayouputstream (and also persist
into stable storage).

Is This Answer Correct ?    16 Yes 6 No

What is serializable interface?..

Answer / atul singhal

Serializable is an Interface, which is used to convert an
object into byte, whose objects state can be saved into any
local disc by ObjectOutputStream and ObjectInputStream.
This byte form of an object will used to transfer over the
Network. This is mainly used in RMI.

Is This Answer Correct ?    10 Yes 0 No

What is serializable interface?..

Answer / rupal

save the object and all its intance variables.

Is This Answer Correct ?    8 Yes 3 No

What is serializable interface?..

Answer / pankaj

when we are supposed to convert our object in to byte form
to save in some location and then use on a network.

Is This Answer Correct ?    10 Yes 6 No

What is serializable interface?..

Answer / kanhaiya kumar

It save the state of the object in persistent(where we can
save data without Database. like- disc or pen drive etc..)
area..

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is the life cycle of Servlet?

3 Answers  


Can a class extend more than one class?

0 Answers  


What is the meaning of course?

0 Answers  


What happens if an exception is throws from an object's constructor?

0 Answers   Amazon,


Does java list allow null?

0 Answers  


What is a boolean expression in java?

0 Answers  


What is an immutable object?

0 Answers  


int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;

17 Answers   Honeywell,


how to connect one jsp page to another jsp page????

6 Answers   IIT, Symphony,


What is the symbol for average?

0 Answers  


How java is similar to c?

0 Answers  


Which Math method is used to calculate the absolute value of a number?

3 Answers   Accenture,


Categories