✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Responde cierto o falso a las siguientes afirmaciones.
Dado el siguiente código:
public class ClasseA {
private int valorPrimari;
private int valorSecundari;
public ClasseA(int a) {
valorPrimari = a;
valorSecundari= 10;
}
public int getSuma() {
return valorPrimari + valorSecundari;
}
}