/* A) Prints the string "" B) Prints the string "null" C) Throws NullPointerException D) None of the above */ public class PrintNull { public static void main(String[] args) { System.out.println(null); } }