What is aggregation and composition ?
Answer / balbir
Aggregation differs from ordinary composition in that it
does not imply ownership. In composition, when the owning
object is destroyed, so are the contained objects. In
aggregation, this is not necessarily true. For example, a
university owns various departments (e.g., chemistry), and
each department has a number of professors. If the
university closes, the departments will no longer exist,
but the professors in those departments will continue to
exist. Therefore, a University can be seen as a composition
of departments, whereas departments have an aggregation of
professors. In addition, a Professor could work in more
than one department, but a department could not be part of
more than one university
| Is This Answer Correct ? | 6 Yes | 1 No |
What is the basic functionality of DataOutput interface in java?
What is multithreading in java?
What is port number in java?
Why you should not use singleton?
What is data movement?
What is the output of the below java program?
What is getclass () getname () in java?
What is hasnext in java?
What are the steps to do connection pooling in weblogic?
What is a compilation unit?
String class is defined under which package in java?
Can u write constructor in abstract.If yes den when it will be invoked.