Can someone explain why the first constructor Building() of the superclass Building is called instead of the second constructor Building(String name) ?
So correct me if wrong but I think the first constructor Building() of the superclass Building is used b/c the compiler looks for the no-arg constructor (basing this logic off of question 2 pg. 172 explanation).