Homework 6 UCR CS10: Introduction to Computer Programming Fall Quarter 2003, Lecturers: Brian Linard, Kris Miller Due Thursday, November 20 at the BEGINNING of lecture. 1. Self-test Excercise #5-25 2. Self-test Excercise #5-26 3. Self-test Excercise #5-27 4. Self-test Excercise #5-28 5. Self-test Excercise #6-1 6. Self-test Excercise #6-2 7. Self-test Excercise #6-6 8. Self-test Excercise #6-7 9. Write a definition for a structure type for storing a date. The date should consist of the month, day, and year. Write a function that will be passed an object of this structure type and output it's value to the screen in the format: month/day/year For example: 11/12/2003 Call the type Date. 10. Write a definition for a structure type for storing information about a student. This type should store the student's id, dob (date of birth), and their gpa (grade point average). Id should be stored as an int, DOB should be stored as the Date type you defined in #9, and GPA should be stored as a double. Call the type Student. NOTE: questions 9 & 10 will be graded for actual points!!