When i execute the below code,I am seeing the output as:
Finally
Exception in thread "main" java.lang.NullPointerException at ClientTestConcepts.main(ClientTestConcepts.java:9)
Who prints the bold faced statements.
public class ClientTestConcepts {
public static void main(String []args){
try{
throw new NullPointerException();
}
finally{
System.out.println("Finally");
}
}
}