Having these two tables:
DEPARTMENT
DNAME ----------- RESEARCH IT SCIENCE
DEPTLOC
If I where to guess you are asked to provide a solution using set operations like UNION, INTERSECT and DIFFERENCE (MINUS or EXCEPT). If A is departments located in Boston and B is departments located in London then (A - B) U (B - A) is one solution
UNION
INTERSECT
DIFFERENCE (MINUS or EXCEPT)