Can we override final method?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Why we used vector class?

0 Answers  


What is used of static keyword in java?

0 Answers   Cyient,


What are packages and name a few?

4 Answers  


What do you mean by static variable?

0 Answers   TCS,


Java support call by reference (pass by reference) ?

1 Answers   HCL,






What is preparedstatement in java?

0 Answers  


Why we do exception handling in java and how many types of exceptions are there?

0 Answers  


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.

3 Answers  


how to print a numbers from 1 to 100 with out using control structures?

4 Answers   IBM,


What is serialVersionUID and what is its need?

1 Answers   KPIT,


What is a container in a gui?

0 Answers  


What is a parameter used for?

0 Answers  


Categories