What's true about constructors?

A constructor's name needs to match the class'sWe can call the superclass constructor with super()A subclass constructor has to redo everythingWe have to put the constructor right after the class introduction

Exactly! We have to call the superclass constructor with super() but we don't have to put it right after the introduction or redo what it already did.

Oh noes! We have to call the superclass constructor with super() but we don't have to put it right after the introduction or redo what it already did.