Question: 2 . 9 LAB: Pet information ( derived classes ) Instructor note: Important Coding Guidelines: Use comments, and whitespaces around operators and assignments. Use line
LAB: Pet information derived classes
Instructor note:
Important Coding Guidelines:
Use comments, and whitespaces around operators and assignments.
Use line breaks and indent your code.
Use naming conventions for variables, functions, methods, and more. This makes it easier to understand the code.
Write simple code and do not over complicate the logic. Code exhibits simplicity when its well organized, logically minimal, and easily readable.
The base class Pet has attributes name and age. The derived class Dog inherits attributes from the base class Pet class and includes a breed attribute. Complete the program to:
Create a generic pet, and print the pet's information using printinfo
Create a Dog pet, use printinfo to print the dog's information, and add a statement to print the dog's breed attribute.
Ex: If the input is:
Dobby
Kreacher
German Schnauzer
the output is:
Pet Information:
Name: Dobby
Age:
Pet Information:
Name: Kreacher
Age:
Breed: German Schnauzer
qxzqy
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
