Answered Questions

  • Use of Static

    What is the use of static in (public static void main string args[])

    Suresh

    • Aug 6th, 2011

    Without creating instance of that class to invoke the main method static keyword is used, by giving the name of the class main method gets invoked.

  • What is garbage collection

    Ritesh

    • Jul 25th, 2005

    Java provide a automatic clean up of object if that object referecne counter becomes zero. and this is done by the garbage collector. this will invoke automatically and free all those resources(object) who is not been use for a long time..