Question: write in java. Create a base class called Animal which has two (2) class fields. The first field holds an integer Dtag for a number

write in java.
Create a base class called "Animal" which has two (2) class fields. The first field holds an integer "Dtag" for a number that a zoo uses to catalogue their animals and the second field holds a string called "species." From the Animal class, derive two (2) classes. One is called "Bird" and the other "Reptile". E.g. Species could be (for the Bird class) ostrich dove, chicken etc. and (for the Reptile class) lizard, snake, bearded dragon etc The Bird class has an additional class field called "colour" which holds the colour of the bird's feathers (int -1-grey, 2-white, 3-black) The reptile class has an additional class field called "bloodTemp" which hold the reptile's temperature of their blood (double) You need to instantiate two (2) objects. The bird object will be called brd" and the reptile object called "rept." Input values for the bird's Dtag, species and feather colour (int) and for the reptile's IDtag number, species and bloodTemp Override the Animal class's input and output methods Each derived class must have its own constructor. Write methods to 'input and 'output' values to the class fields for all classes and then print out the values of the bird and reptile class fields with labels identifying the values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
