1 Create facts for the students' school: school(X, Y) where X is the student (jack or sam) and Y is the school (cisde or ssebe). Create facts for the students' subjects: subject(X, Y) where X is the student (jack or sam) and Y is the subject (computer science, software_engg, construction_engg, or environmental_engg). Create facts for the students' courses : course(X, Y) where X is the subject (computer science, software_engg, construction engg, or environmental_engg) and Y is the course (CSE240, CSE446, SER321, SER322, CNE210, CNE213, EVE214, or EVE261). [5] 2.2 Create a rule info(X, Y), where X is the student (jack or sam) and Y is the info for the student. For example, info(jack, X) should return the school and subjetos: cidse, computer science, software engg. [5] 2.3 Create a rule schedule(X, Y), where X is the student (jack or sam) and Y is the course (CSE240, CSE446, SER321, SER322, CNE210, CNE213, EVE214, or EVE261). For example, schedule(sam, X) should return CNE210, CNE213, EVE214, EVE261. [5]