✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dada la siguiente clase:
class UnaClaseCualquiera extends UnaClaseBase {
int y;
public UnaClaseCualquiera(int x, int y) {
super(x);
this.y = y;
}
}
Indique qué significa la palabra super: