Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


whats the purposr of using serialization?

Answers were Sorted based on User's Feedback



whats the purposr of using serialization?..

Answer / vinayak

in Java if you want to store java object for life time you
need to serialize it by implementing it class be serialiazable
interface.
So that you can access lifetime it it is stored somewhere.

Is This Answer Correct ?    4 Yes 1 No

whats the purposr of using serialization?..

Answer / paletipatisrinu

serialization is the process of save ing the state of the
object in to file or secondary storage device.The main
purpose serialization we can send the data one layer to
another layer.its converts java notation object to network
notation object.if we are working with serialization ur
class must implemented serializible interface

Is This Answer Correct ?    2 Yes 0 No

whats the purposr of using serialization?..

Answer / niltarlekar

object can pass in network from one place to other

Is This Answer Correct ?    2 Yes 1 No

whats the purposr of using serialization?..

Answer / rameshreddy.k

by using serialization we can pass some amout of data from
network to another network or one layer to another layer ..
and also we want use object with running JVM by use
serialization consept we can use it

Is This Answer Correct ?    0 Yes 1 No

whats the purposr of using serialization?..

Answer / ajay yadav

To store the current object to the persistent storage
location.

Is This Answer Correct ?    0 Yes 1 No

whats the purposr of using serialization?..

Answer / mushtaq hussain

to write object in Hard disk.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

Can we have multiple catch block for a try block?

0 Answers  


Can we convert stringbuffer to string?

0 Answers  


Why do we need hashset in java?

0 Answers  


What is byte code and why is it important to java’s use for internet programming?

0 Answers  


Can final class have constructor?

0 Answers  


Explain the importance of finally block in java?

0 Answers  


How is it possible for two string objects with identical values not to be equal under the == operator?

0 Answers  


Can a class be a super class and a sub-class at the same time? Give example.

1 Answers  


What is the USE of Null interfaces ??...if thers nothing inside these interfaces how are they used and WHy are they used ???? No 1 has given a proper description yet

1 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


Difference between collection, collection and collections in java?

0 Answers  


Functionality of JVM?

7 Answers   Infosys,


Categories