Answer Posted / devarathnam c,kotagudibanda(po
Hi...
Serialization: It is the process of storing the object
state into permanent device like harddisc,external file
system.
De-serialization:It is the process of getting the object
state, just reverse of the serialization.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is the difference between the session.update() method and the session.lock() method?
What are the different algorithms used for clustering?
Why doesn’t the focus feature on the tag work in every circumstance?
Is a class a subclass of itself?
Name the eight primitive java types.
What is the difference between java class and bean?
Which characters may be used as the second character of an identifier, but not as the first character of an identifier?
Do I need to import javlang package any time? Why ?
What restrictions are placed on the location of a package statement within a source code file?
What are various types of class loaders used by jvm?
What are the diff types of exception?
What are the services in RMI ?
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
How are commas used in the intialization and iteration parts of a for statement?