Question
Using your choice of C# or Java, define a class for a Dog. (i) A Dog object should have three attributes: a name, an age,
Using your choice of C# or Java, define a class for a Dog. (i) A Dog object should have three attributes: a name, an age, and weight. Your class should have (ii) a constructor that takes three arguments and copies them to the attributes; (iii) setter (mutator) and getter (accessor) or property (C#) only for one the attributes; (iv) override the toString()/ToString() method to display the Dogs attributes on screen; and (v) a main() method that creates a Dog object, assigns values to its attributes, and displays them by using the PRINT() method.
Please type in your codes here. Minor mistakes will be avoided. No codes directly copied from an IDE will be accepted. Write PRINTLN() instead of System.out.println() in Java / Console.WriteLine() in C#.
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