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 purpose of a transient variable?
How many types of packages are there in Java?
What do you understand by the term wrapper classes?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How to Sort list of Strings in ascending order without using java api.
What is a data structure java?
Why are parameters used in functions?
why to use transient variables when static variables can be used for Serialization
Explain the difference between throw and throws in java?
How do you use spaces in java?
What is thread pool? How can we create thread pool in java?
What is the final blank variable?