How does regex work?
No Answer is Posted For this Question
Be the First to Post Answer
Is space a string in java?
What is variable argument in java?
what is the life cycle of jsp?
Name some OOPS Concepts in Java?
how you will prevent inheritance is there any other way other than inheritance?
Can I learn java in 3 months?
State the main difference between c++ and java?
can u override the start() method of Thread class
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
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.
What is a class in java?
How to declare unique ArrayList ?