What is the concept Below???
class A {
int x=10;
};
class B extends A {
int x=100;
show() {
System.out.println(x);
}
public static void main(String... s) {
B b1=new B();
b1.show();
}
};
The program will print 100. But the concept illustrated is----
Reveal answer
Fill a bubble to check yourself