Shirt inherits clothing. In the Shirt constructor, how is theClothing default constructor called? (Select all that apply)
Group of answer choices
super();
Clothing();
Clothing.Clothing()
Make no explicit call
Shirt inherits Clothing. In the Shirt constructor, how is aClothing constructor with one int parameter called?
For the answer, assume that an int variable called \"myInt\" is inscope.
Group of answer choices
Clothing.Clothing(myInt);
Clothing(myInt);
super(myInt);
Make no explicit call
Shirt inherits Clothing. Both classes have their own version ofthe method fold(). Which fold() is executed in the followingcode?
Shirt myShirt = new Shirt();
myShirt.fold();
Group of answer choices
The Clothing version
The Shirt version
Both, Shirt and then Clothing
Both, Clothing and then Shirt