What is the main function in java?
No Answer is Posted For this Question
Be the First to Post Answer
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?
how to handle http request in struts
Does a class inherit the constructors of its superclass in java programming?
Why string is popular hashmap key in java?
5 What is Java exception handling?
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac
What is variable and constant explain with example?
How many types of java are there?
Name the method of a Container that can be used to cause a container to be laid out and redisplayed?
What is collections framework?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?
how to call One constructor from another;