✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dada la siguiente clase:
class CuadradoRojo extends Cuadrado {
/* Definición de atributos o métodos que no nos interesan */
@Override
void dibujar () {
StdDraw.setPenColor(StdDraw.RED);
super.dibujar();
}
}
Indica el enunciado más correcto respecto de super y su significado: