the answer to this question varies in mocks...
when class p is associate to class q with the multiplicity defined as *(many) on p side and 1 on q side...i.e many instnaces of q are associated with p...
which is the right answer??
class P{
Q q;
}
class Q
{
P[]p;
}
or
class P {}
class Q
{
P[]p;
}