Analyze the following code. public class Test { int x; public Test(String t) { System.out.println("Test"); } public static void main(String[] args) { Test test = null; System.out.println(test.x); } }
A.
The program has a compile error because x has not been initialized.
B.
The program has a compile error because test is not initialized.
C.
The program has a runtime NullPointerException because test is null while executing test.x.
D.
The program has a compile error because you cannot create an object from the class that defines the object.
E.
The program has a compile error because Test does not have a default constructor.