What is outofmemoryerror in java?
What is class and object in java?
what happens when we add the objects morethan the size limit to a hashmap
What is a predicate method?
What sorting algorithm does javascript use?
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 is boolean query?
Hi Friends, can u give code to convert ArrayList to HashMap and HashMap to ArrayList.
How do you create a first line indent?
What is meant by throwing an Exception?
Is linkedlist thread safe in java?
What is continuity of a function?
Explain the public class modifier?