What is map java?
No Answer is Posted For this Question
Be the First to Post Answer
What is singleton class example?
What is the generic function?
Enlist few advantages of inheritance?
Can you have a constructor in abstract class?
What is package protected in java?
Write a code to show a static variable?
What is the equal sign?
What is java argument list?
How do you use final keywords and final variables in Java?
what are class,constructor and primitive data types?
Define immutable object?
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.