What is the integer of 16?
No Answer is Posted For this Question
Be the First to Post Answer
how can i use a nonsynchronized hashtable?
What is the difference between static (class) method and instance method?
What advantage do java's layout managers provide over traditional windowing systems?
How do you format in java?
Advantages of Inheritance in java.
How is garbage collection controlled?
Why java does not supports multiple inheritance?
what is the difference between object and class
What is static keyword?
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 are null interfaces? Give some examples?
What are the 7 types of characters?