A college contains many departments. Each department can offer any number of courses.

a) A college contains many departments. Each department can offer any number of courses. Many instructors can work in a department. An instructor can work only in one department. For each department there is a Head. An instructor can be head of only one department. Each instructor can take any number of courses. A course can be taken by only one instructor. A student can enroll for any number of courses. Each course can have any number of students.
Draw an ER diagram for this schema that takes into account all the assertions given.

A relation ADDRESS is defined as follows.

c) A relation ADDRESS is defined as follows.
ADDRESS(Name, Street, City, State, Postal_code)
Where name is unique, and for any given postal code, there is just one city and state.
i) Give a set of FDs for this relation.
ii) Is ADDRESS in 3NF or 2NF? Explain why? If it is not in 3NF, normalize it into 3NF
relations.