20. What is the result of compile & run of the following program:
class USA
{
USA(int K)
{
System.out.println(“USA”);
}
}
public class world extends USA
{
public static void main(String A[])
{
world w=new world();
}
void world()
{
System.out.println(“world”);
}
}