Relational AlgebraThe first few questions will use a student, unit, grade database similar to theone from lectures, but where the tables are called S (for student), U (for unit)and G (for grade) and have the following schema:S(sid, name, gender)U(uid, name)G(sid, uid, grade)Students have a unique id, a name and a gender (either M or F) , Units have anunique id (like CITS1402) and a name (like Databases), while Grades indicatewhat grade the student with id sid achieved when they took the unit with iduid.