Is void a wrapper class?
No Answer is Posted For this Question
Be the First to Post Answer
Can I have constructor in Interface?
Differentiate Vector and ArrayList?
Can we write method inside a method in java?
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 really hapens when a object is created using new operator? 1.is it allocates memory to all variables and methods in the class with reference to that object?
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?
Can we able to pass objects as an arguments in java?
What is the difference between hashmap and hashtable? What is an interface?
Is 'null' a keyword?
What is the basic difference between string and stringbuffer object?
What do u mean by variable?
What is a byte array?