You are to observe around you for the rest of the week and identify 3 objects from different classes. (Note: once you start doing this you will probably see lots of objects from the same or similar classes.)
Write down the specific object you identified, then list its class, finally define the class with attributes only, you DO NOT need to define any methods. This will require you to think of what the appropriate attributes should be for objects in the specified class.
This assignment is a paper exercise and does not require any programming in Visual Studio. Its purpose is to get you to start thinking about seeing the world as a collection of objects belonging to different classes. An example of what your assignment should look like (for one object, repeat for the other 2 objects):
Object: a mosquito, Class: Insect Definition:
class Insect {
private:
string type; // mosquito, lovebug, fly, bee, ant, etc.
bool found_in_Florida; // true = yes, false = no bool flies;
bool isPoisonous; // NO methods for behaviors or get and set are required };
// end of class insect