public static void main(String[] args) { <br /> try { <br /> args=null; <br /> args[0] = “test”; <br /> System.out.println(args[0]); <br /> } catch (Exception ex) { <br /> System.out.println(”Exception”); <br /> } catch (NullPointerException npe) { <br /> System.out.println(”NullPointerException”); <br /> } <br /> } <br /> What is the result?() 
A、 test
B、 Exception
C、 Compilation fails.
D、 NullPointerException