What are static methods?
No Answer is Posted For this Question
Be the First to Post Answer
What causes memory leaks in java?
What is method and methodology?
What is java argument list?
What do you mean by pointer value and address?
What is a resource leak ?
Write a program to create a binary Tree ?
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 static import in java? Explain
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC
What is the main difference between java platform and other platforms?
How many threads can I run java?
what is the diff between Servletcontext and servletconfig?