Question: Subject: Write a complete C++ program that creates a Daggo class and uses objects of this class. As the class name implies, this represents a

Subject: Write a complete C++ program that creates a Daggo class and uses objects of this class. As the class name implies, this represents a dog. The Daggo class consists of following components. Properties (assuming default access modifier) o name: string, name of the dog o color: string, color of the dog o o e Constructors weight: double height: double o No-argument constructor: the constructor has no parameter o Standard constructor: the constructor with the same number of parameters as properties . Methods o bark0: no return, ie. void return type, describe how the dog bark, what does it sound like. o fetch item): no return, describe how the dog retrieves this item. o displayO: no return, prints the name and current value of every property. The mainO function should be placed below the Daggo class, inside the same source file as the Daggo class. In the main0 function, create two Daggo objects, one from the no-argument constructor, another from the standard constructor. For the latter object from the standard constructor, one value should be read from the user with proper prompts. At the end, call every method from each object
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
