1) In LinkedList implementation all the 3 member varaibles size, first, last are transient, then what is the use of implementing serializable?
2) What will be persi
Have a look at readObject() and writeObject(). It will serialize entreis of the List not the list itself, and reconstructs it from the entries.
readObject()
writeObject()