✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Soit la classe Java suivante :
class A {
private int nbA;
public A() {
nbA++;
}
private static void incA() {
nbA++;
}
public static void main(String[] args) {
A a1 = new A();
A a2 = new A();
System.out.println(nbA);
}
}
Quelles sont les affirmations ci-dessous qui sont correctes ?
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!