To make class DressShirt inherit the functionality of bothClothing and Shirt (from previous question), the class header wouldbe:
Group of answer choices
public class DressShirt inherits Shirt, Clothing
public class DressShirt inherits Shirt
public class DressShirt extends Shirt
public class DressShirt extends Shirt, Clothing
If Shirt inherits Clothing, then Shirt has direct access to the______ members of Clothing
Group of answer choices
public and protected
public
private
protected
private and protected
Shirt inherits Clothing. What is the first thing that musthappen in the Shirt constructor?
Group of answer choices
Initialize the required Shirt fields
Call the Clothing constructor
Create all objects required for Shirt fields
Map the parameters coming into the constructor to Shirtfields