18. 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(“Wrong”);
}
}