✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яку роль відіграє стрічка super(w, h, d); в наведеному фрагменті коду:
public class BoxWeight extends Box {
double weight;
BoxWeight(double w, double h, double d, double m) {
super(w, h, d);
weight = m;
}
}