What is private static final long serialVersionUID = 1L;
Answer Posted / eknath wagadre
serialVersionUID is final static and private variable and
the value of the variable will be genreted by the jvm and
it's used for serialization and deserialization of object.
| Is This Answer Correct ? | 20 Yes | 1 No |
Post New Answer View All Answers
What are various types of class loaders used by jvm?
What are the sequence of steps to write pub or sub model kind of application?
What is Remote Server?
What is the difference between a menuitem and a checkboxmenuitem?
What is metaspace?
wahts is mean by dynavalidatorform in struts/
Explain what is synchronization?
hi friends, i have done my BE(CSE)at 2011 then i have joined one company before they asked me 50k so i paid but now they telling no project here so we r going to close like that so now i need any job i have good knowledge in core java and j2ee(jsp,servlet,jdbc) so if u know any job pl help me
Will the general public have access to the infobus apis?
What is clustering? What are the different algorithms used for clustering?
How a component can be placed on Windows?
Have you used threads in Servelet?
Why are component architectures useful?
What restrictions are placed on the location of a package statement within a source code file?
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!