1. Define a class called employee that has a first name, last name, salary, and the name of the university where the employee graduated as private data members. (Note: Salary should be represented in whole dollars. No cents) Other questions will tell you what public member functions the class should have. 2. Write a member function of employee called get_salary that returns the salary of the employee. 3. Write a member function of employee called raise that takes an integer as parameter and raises the salary by that amount. 4. Write a member function of employee called get_university that takes a string as parameter. The function should put the university where the employee graduated into that string. 5. Define a class called company that has the name of the company, an array of the employees of the company (there will never be more than 1000 employees in the company), and the number of employees in the array as private data members. Other questions will tell you what public member functions this class should have. 7. Write a member function of company called get_sum_salaries that returns the sum of the salaries of all the employees of the company. 8. Write a member function of company called raise_all that takes the name of a university and an integer as parameters. The function should give everybody in the company who graduated from that university a raise in the salary in the amount of that integer. 9. Write a member function of company called same_salary that takes an employee as parameter. The function should return true if that employee makes the exact same salary as somebody in the company. False otherwise. 10. Write another member function of company called same_salary that takes a company as parameter. The function should return true if there is an employee of one company that makes the exact same salary as somebody in the other company. False otherwise. 11. Write a non-member function called reward that takes a company as input and gives everybody in the company who graduated from Clarkson a $10,000 raise and everybody in the company who graduated from RPI a $5,000 raise.