How Array List can be Serialized.

Answers were Sorted based on User's Feedback



How Array List can be Serialized...

Answer / tirupathi rao

By Default all the Collection classes are serialized.And
Serializable is not a class its an Interface.

Is This Answer Correct ?    42 Yes 4 No

How Array List can be Serialized...

Answer / ysr

Array list implements Cloneable, Collection, List,
RandomAccess, Serializable
Interfaces. So no need to implement the serialized
interface.

Is This Answer Correct ?    21 Yes 1 No

How Array List can be Serialized...

Answer / srinu

Arraylist are already implent serializible interface.

Is This Answer Correct ?    14 Yes 0 No

How Array List can be Serialized...

Answer / javachi

To have serialized array list, we need to implement the serializable interface.

Is This Answer Correct ?    6 Yes 6 No

How Array List can be Serialized...

Answer / rishi

by serialized interface

Is This Answer Correct ?    4 Yes 6 No

How Array List can be Serialized...

Answer / dhaval

there is a method dont remember the name perfectly
though......Collections.synchronizedList(myList)

ArrayList myList = new ArrayList();

Collections.synchronizedList(myList)

Is This Answer Correct ?    7 Yes 14 No

How Array List can be Serialized...

Answer / kumaraswamy18

It is done by extending Serializiable class

Is This Answer Correct ?    9 Yes 40 No

Post New Answer

More Core Java Interview Questions

How many types of java are there?

0 Answers  


what is the replacement method of stop() of thread

8 Answers   IBM, TCS,


What is the default value of byte datatype in java?

0 Answers  


What is xslt in java?

0 Answers  


What is the difference between and ?

0 Answers  


What is the difference between double and float variables in java?

0 Answers  


what is the purpose of class "Object" which is base class for all classes?

3 Answers  


can we write a program with out a class in core java?

11 Answers   Wipro,


What is the declaration statement?

0 Answers  


What is method overloading in java ?

0 Answers  


Is a char always 1 byte?

0 Answers  


What is meant by Java ?

2 Answers   CMC, Infosys,


Categories