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 bubble sorting in java?
Suppose i have two threads t1 and t2 are running.How the main thread will know that the two threads t1,t2 execution has completed?
Why is String immutable?
What does opcode mean?
How to compare two strings in java program?
what is difference between Action messages and Action errors?
How can we make a class singleton?
what do you mean by stream pipelining in java 8? Explain
Difference between Array and vector?
Why Java is not purely object oriented?
50 Answers Elitecore, Persistent, Reliance, Wipro,
Can a private method be declared as static?
What is the difference between call by reference and call by pointer?