Which is easier netbeans or eclipse?
No Answer is Posted For this Question
Be the First to Post Answer
What is final modifier?
System.out.println("somestring"); It will create any object or not
Why generics are used in java?
what is the use of private constructor in core java?
3 Answers OnMobile, Satyam, Yash Technologies,
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 the difference between and ?
what is the difference between abstract class and Interface?where we can use it in realtime projects?
23 Answers Agile Software, Cognizant, IBM, Innodata, Logica CMG, Mitosis, Nagarro, Value Chain,
What is a string what operation can be performed out with the help of a string?
How is rounding performed under integer division?
There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation?
What are the differences between this and super keyword?
When will we use class loader?