Question: QUESTION 1 Analyze the following code: public class A { int a ; public A ( int a ) { System.out.println ( a ) ;
QUESTION
Analyze the following code:
public class A
int ;
public Aint a
System.out.printlna;
public static void mainString args
A test;
System.out.printlntesta;
The program has a compile error because a is not public.
The program has a compile error because a has not been initialized.
The program has a compile error because you cannot create an object from the class that defines the object.
The program has a compile error because A does not have a default constructor.
The program has a runtime NullPointerException because test is null while executing test.x
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
