R
Q. What will be the output?
class A{
static void method(){
System.out.println("Class A method");
}
}
class B extends A{
static void method(){
System.out.println("Class B method");
}
}
public class Test{
public static void main(String args[]){
A a = new B();
a.method();
}
}
- Correct Answer - Option(A)
- Views: 34
- Filed under category JAVA
Discusssion
Login to discuss.