What is parsing and its types?
No Answer is Posted For this Question
Be the First to Post Answer
What are green threads in java?
Implement 2 stacks with just 1 array. The stack routines must not indicate overflow unless every slot in array is used.
How many tetrahedral voids are there in bcc?
What is a instance variable in java?
Does 'true' and 'false' are keywords?
How to disable caching on back button of the browser?
What is methodological framework?
Is java based on c?
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?
How to synchonise HashMap
Outline the major features of java.
What is the benefit of inner / nested classes ?