Consider the following code snippet:
public class Manager extends Employee
{
private Project[] projects;
private Address address;
. . .
}
Which of the following statements is NOT correct?
a) Manager inherits from Employee.
b) Address aggregates Manager.
c) Manager aggregates Address.
d) Manager aggregates Project.