Because of the increasing storage capacity of memory, a typical database application can now cache most of the application's data requirements in internal memory.

a) Explain the concept of data persistence and explain the impact on data persistence given the above statement.

b) Consider the following scenario that describes the processing of examination results at a college on a database that holds information on student assessment.

Students are assessed on a particular course by taking 4 exams. Each exam is the only assessment for a module on which they have enrolled. The students from different courses share the same module.
Exam marks for a particular student are entered in sequence.
A report is generated showing the end-of year assessment results with the following column headers:- Student_ID, Student_name, Date Assessed, Average_mark, Grade

i) Using this information derive a simple CLASS (Object Oriented) model using a defined notation.

ii) A database trigger could be used to implement the following business rule.
Business Rule:- If the mark entered is less than 30% then an overall grade of FAIL is recorded. When all 4 marks are entered then the average mark is calculated and a grade of PASS or FAIL recorded. For a PASS the average mark must be 40% or more with no single mark less than 30% otherwise a FAIL is recorded.
Explain with the aid of sample data and pseudo-code how this could be achieved and discuss the advantages and disadvantages of using triggers in this way.

(Advanced Database Systems Course)