Answered step by step
Verified Expert Solution
Link Copied!

Question

00
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:

  1. 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.
  2. Create 2 constructors, one with no parameters and one with many parameters to initialize all the instance variables.
  3. Create Accessor (get) methods for each o the instance variables.
  4. Create Mutator (set) methods for each of the instance variables.
  5. Create a toString() method that returns all the information in a pet record.
  6. 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

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions