What is persistence ?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
persistence is the maintenance of state between a bean and
database consistently
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / priyavarzhni
Persistence means Permanent.
(ie) data are stored in the Database.
Is This Answer Correct ? | 2 Yes | 1 No |
Explain Connection Pooling?
How hashmap works in java?
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?
What does nullpointerexception mean?
Why does my function print none?
What does the string method compareto () do?
Hi Friends, Can u give few interview questions which relates ArrayList and Hashmap. I mean how to link ArrayList and HashMap.I know this is not good way of asking questions like this , but i need
What are init(), start() methods and whey they are called?
What are the basics of core java?
What does int argc char * argv [] mean?
What is an immutable class? How to create an immutable class?
What is the default value of float and double datatype in java?