class A {
int x=10;
public static void show() {
int x=20;
System.out.println(x);
}
}
class A {
int x=10;
public static void show() {
int x=20;
System.out.println(x);
}
}
The Output we always get is-- 20,, But Why... What is the name of this concept??
Reveal answer
Fill a bubble to check yourself