What does this program do ? public class Null { public static void greet() { System.out.println("Hello world!"); } public static void main(String[] args) { ((Null) null).greet(); } }
Hello world!
Throw a NullPointerException
Won't even compile
Run time error