What is the memory leak in java?
No Answer is Posted For this Question
Be the First to Post Answer
in a console we r giving java <class name> if r pressing enter where it'll goes
Why method overriding is used?
Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.
What is the difference between yielding and sleeping?
What is static variable and static method?
32 Answers Accenture, Prolific, Prolifics, TCS, TNH,
Difference between a class and an object?
In a container there are 5 components. I want to display the all the components names, how will you do that one?
What is the advantage of OOP in java?
What is meant by Java interpreter?
Is 0 an irrational number?
which method is used to know the status of the Thread?
What are different types of arrays?