✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Animal { }class Mammifere extends Animal { }class Reptile extends Animal { }class Felin extends Mammifere { }class Zoo { public static void main(String[] args) { Animal a = new Felin(); Mammifere m1 = new Felin(); Mammifere m2 = new Animal(); m1 = a; a = m1; }}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!