Can we override private method in java?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a case when finally will not execute?
Is intellij better than eclipse?
When is the finally clause of a try-catch-finally statement executed?
What is a get method?
How can you make sure that your singleton class will always return single instance in multi-threaded environment?
Can we have multiple public classes in a java source file?
What is basic concept of static in java ?
I have one Shopping cart application, i that i have selected some items, while clicking submit button by mistake i have clicked twice or trice, that time items are selected twice or trice. Actually i want only one copy of items but its selected twice or trice. So how can we avoid this problem?
Can a static class implement an interface?
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(); }
what questions are been asked ??? for interview in apti
Why map is used in java?