Answer:
Constructor issue
Explanation:
When you look at the Class A, the constructor takes one argument as a parameter, a String.
A(String newS) {
s = newS;
}
However, in the main, the constructor does not take any argument as a parameter.
A a = new A();
That's why the code does not compile.
Answer:
Presentation Quality
Explanation:
It will be full quality as it is from when your presenting
The answer & explanation for this question is given in the attachment below.