Answered step by step
Verified Expert Solution
Question
1 Approved Answer
You've been hired to create a software system for the Awesome Animal Clinic! They would like to keep track of their animal patients. Here are
You've been hired to create a software system for the Awesome Animal Clinic! They would like to keep track of their animal patients. Here are some attributes of the pets that they would like to track:
- Name
- Age
- Weight
- Type (dog, cat, lizard, etc.)
- Breed
Your lab should:
- Create a class that keeps track of the attributes above for pet records at the animal clinic. Decide what instance variables are needed and their data types. Make sure you use int, double, and String data types. Make the instance variables private.
- Create 2 constructors, one with no parameters and one with many parameters to initialize all the instance variables.
- Create Accessor (get) methods for each o the instance variables.
- Create Mutator (set) methods for each of the instance variables.
- Create a toString() method that returns all the information in a pet record.
- In your main method, create 3 pet objects and call their constructors, accessor methods, and toString methods to test all of your methods.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started