Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You have created the following base public class of Animals: public class Animal { private int noOfLegs; private String name; public Animal ( ) {

You have created the following base public class of Animals:
public class Animal {
private int noOfLegs;
private String name;
public Animal(){}
public Animal(int legs, String name){
this.noOfLegs = legs;
this.name = name;
}
public int getNoOfLegs(){
return noOfLegs;
}
public void setNoOfLegs(int noOfLegs){
this.noOfLegs = noOfLegs;
}
public String getName(){
return name;
}
public void setName(String name){
this.name = name;
}
}
Assume that the Dog class extends the Animal class. If you create a Dog subclass of Animal in which favoriteTreat is also a String, which constructor accurately does this?
a.)
public Dog(int legs, String name, String favoriteTreat){
this.favoriteTreat=favoriteTreat;
super(legs, name);
}
b.)
public Dog(int legs, String name, String favoriteTreat){
super(legs, name);
}
c.)
public Dog(int legs, String name, String favoriteTreat){
super(legs, name);
this.favoriteTreat=favoriteTreat;
}
d.)
public Dog(int legs, String name, String favoriteTreat){
super(legs, name, favoriteTreat);
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beyond Big Data Using Social MDM To Drive Deep Customer Insight

Authors: Martin Oberhofer, Eberhard Hechler

1st Edition

0133509796, 9780133509793

More Books

Students also viewed these Databases questions