Can we overload final method in java?


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

Post New Answer

More Core Java Interview Questions

what is the diff between Servletcontext and servletconfig?

5 Answers  


class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }

8 Answers   Logica CMG,


Can we overload the main() method?

0 Answers  


Name container classes in java programming?

0 Answers  


Why cant we define System.out.println() inside a class directly?

5 Answers  






Is java platform independent?

0 Answers  


Why java is a platform independent? Explain

0 Answers  


what is the difference between String s="hello"; and String s=new String("hello");?

3 Answers  


What is floating data type?

0 Answers  


What are recursive functions?

0 Answers  


33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac

5 Answers  


What are daemon Threads in java?

0 Answers   Impetus,


Categories