What will be the output of the following program?
import java.net.*;
public class TryBlockOnly
{
public static void main(String a[]) throws MalformedURLException
{
try
{
URL url = new URL("http://www.meritcampus.com");
System.out.println(url);
}
finally
{
System.out.println("In finally block");
}
}
}