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
Get step-by-step solutions from verified subject matter experts
