Differentiate between Aggregation and containment?
Answer Posted / arul
Aggregation is the relationship between the whole and a
part. We can add/subtract some properties in the part
(slave) side. It won?t affect the whole part.
Best example is Car, which contains the wheels and some
extra parts. Even though the parts are not there we can
call it as car.
But, in the case of containment the whole part is affected
when the part within that got affected. The human body is
an apt example for this relationship. When the whole body
dies the parts (heart etc) are died.
| Is This Answer Correct ? | 33 Yes | 7 No |
Post New Answer View All Answers
explain dynamic binding
What is a try/ catch block?
A class inherits from 2 interfaces and both the interfaces have the same method name as shown below. How should the class implement the drive method for both car and bus interface?
Can a class in java be inherited from more than one class?
Define exceptions?
What is the default access modifier for a class,struct and an interface declared directly with a namespace?
What does it mean that a method or class is abstract?
What do you mean by "explicitly implemeting an interface". Give an example?
What is Overloading ? Is it similar to overriding ?
what is full form OOP?
How many methods are there in the serializable interface?
What are Classes and Objects?
What do you mean by data hiding?
Can constructors be parameterized?
Explain method overriding.