What is autoboxing and unboxing?
No Answer is Posted For this Question
Be the First to Post Answer
what is filters and its 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?
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
Are global variables initialized to zero?
What is string data?
Explain polymorphism citing an example.
What is meant by flickering?
how to create an applet
Difference between final and effectively final ? Why is effectively final even required ?
What are the concepts of 'OOPS'?
how to create constants in java?
What is the use of arrays tostring () in java?