What is meant by distributed application? Why are we using that in our application?
No Answer is Posted For this Question
Be the First to Post Answer
What is method overloading in java ?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual 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?
In what type of containers, Border layout is a default layout?
What are integer overflows and underflows and how to handle them?
what is a green thread? : Java thread
What does those terms actually mean included in the j.d.k i.6?
Which collection does not allow duplicates in java?
What is outofmemoryerror in java?
who can we create the object of a class? in how many ways we can create it (max 5)
Difference between array and arraylist.
23 Answers Arise Solution, Banca Sella, iFocus, NIC, Sai Softech, Solartis, TCS, Verizon,
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }