------------ 7 8 9 10 15 <--quizes to look at, for the final ========================== #include #include class date { private: int month; int day; int year; public: date(int = 7, int = 4, int = 2001);//a member function - constructor void setdate(int,int,int);//a member function void showdate(); }; date::date(int mm, int dd, int yyyy)//constructor that intitializes { month = mm; day = dd; year = yyyy; return; } void date::setdate(int mm, int dd, int yyyy) { month = mm; day = dd; year = yyyy; return; } void date::showdate()//displays { cout << "The date is "; cout << setfill('0')//ensures values correspond to the conventional dates << setw(2) << month <<'/' << setw(2) << day << '/' << setw(2) << year % 100 // extract the last two digits << endl; return; } int main() { date a, b, c(4, 1, 1998); //declares 3 objects b.setdate(12,25,2002);//assigns values to b data a.showdate(); b.showdate(); c.showdate(); return 0; } ========================================== responsibilites-accepting the potential cause, duties and obligations for the decisoin one makes accountability-mechanizm for accessing responisbility for decisions made and actions taken liability-existance of laws the permit individuals to recover the damages done to them by other actors, systems, or organizations dueprocess-process in which laws are well known and understood, and there is an ability to appeal to higher .... computer crime-the commission of illegal acts through the use of computer or against computer system, -----------------=======--------------- KNOW HOW TO create.. *prototype with parameters how to create or to give average *function definition, as it relates to parameters(strings) *look at: arrays(filling the array with values(use loop))