Can we override private constructor in java?
No Answer is Posted For this Question
Be the First to Post Answer
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 are the different conditional statements?
Do we have pointers in java?
what happens when a thread cannot acquire a lock on an object? : Java thread
can two class in a code be public??if yes then how??
What are the OOPS concepts in Java ?
why ,we are using jsp and html.which one is better?
What are different types of constants?
Inorder to specify a container?s layout, which method is used?
how does the run() method in runnable work? : Java thread
Which containers may have a MenuBar?
Why set is used in java?