Which Man class properly represents the relationship "Man has a best friend who is a Dog"?

Which Man class properly represents the relationship “Man has a best friend who is a Dog”?

Which Man class properly represents the relationship “Man has a best friend who is a Dog”?

A.
class Man extends Dog { }

B.
class Man implements Dog { }

C.
class Man { private BestFriend dog; }

D.
class Man { private Dog bestFriend; }

E.
class Man { private Dog<bestFriend>; }

F.
class Man { private BestFriend<dog>; }



Leave a Reply 1

Your email address will not be published. Required fields are marked *


Matti

Matti

D is correct, Man has a has-a-relation with class Dog !