Answer:
public ApartmentBuilding (Address addr, int sqFoo, int totUn) {
super(addr, sqFoo);
this. totalUnits = totUn;
}
Step-by-step explanation:
To pass up parameters from a subclass constructor to a superclass constructor you just need to define a parameter name in the subclass constructor (in this case addr and sqFoo, but it can be anything you like) and then use the keyword super.
The keyword super acts exactly the same as the constructor of the superclass, however that may be defined.
And for the rest of the parameters (E.G. the ones of the sub class) you just treat them as a regular constructor.