/* Choose any everyday object. Write the pseudo-code for an ADT class which uses class-level variables to store the values of at least 5 properties and uses public functions to change those values. */ #import private string color; private string make; private string model; private int year; string getColor() { return color; } void setColor(string newColor) { color = newColor; } string getMake() { return make; } void setMake(string newMake) { make = newMake; } string getModel() { return model; } void setModel(string newModel) { model = newModel; } int getYear() { return year; } void setYear(int newYear) { year = newYear; }