Can an interface be defined inside a class?
No Answer is Posted For this Question
Be the First to Post Answer
What is a method signature java?
what is the final keyword denotes in java?
What is constructor and virtual function?
What class is used to create Server side object?
What is a module function?
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 are the differences between the constructors and methods?
What is the symbol for average?
Is array synchronized in java?
Explain what do you mean by functional overloading in java?
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
Does java support Operator Overloading?