Is constructor inherited?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between sop and work instruction?
Is a case study a method or methodology?
11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.
Explain try and catch keywords in java?
What is the difference between ArrayList and Vector? which one is better in Java
0 Answers SkillGun Technologies,
What is bean? Where it can be used?
What is a compilation unit?
What is lastindexof in java?
What is java english?
Explain the JDB in depth & command line.
Why call by value prevents parameter value change?
Where are local variables stored?