In terms of the relations shown below, what is the appearance of the relation RESULT after executing each of these instructions?
Employees
Name Email_address Location
John John.john @ abxz.com 5
Mary m.smith @ abxz.com 3
Philip philipx @ abxz.com 5
Department
Manager_Name Floor_#
Karen 4
David 5
a. RESULT <- PROJECT Location from Employees
b. RESULT <- SELECT from Employees where Location = 5
c. RESULT <- PROJECT Floor_# from Department
d. RESULT <- JOIN Employees and Department where
Employees.Location = Departement.Floor_#
Check attachment for correct tables
Attachment:- Relations.zip