How to check if a list is sorted in java?
No Answer is Posted For this Question
Be the First to Post Answer
Why is the main method static in Java?
Why Do I Get A "permission Denied" Error After Downloading The .jnlp Java Launcher For The Vkvm?
Why is serialization required?
What does system.gc() and runtime.gc() methods do?
how can you say that java is independ language
Why is Java a platform independent language?
Explain different ways of creating a thread. Which one would you prefer and why?
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 about the interpreter in java?
How do you clear a method in java?
how to connect two diffrent applet files
When we give defination of interface method in the class why method must be public???