Most objects die young. Frame the concept in practical terms so you can explain it during interview discussion.
The Weak Generational Hypothesis suggests that most objects in a program are short-lived, which means they become unreachable quickly. This observation led to the design of the Generational Garbage Collection strategy, where the Young Generation is aggressively collected. Consider a method that creates many temporary objects—these objects become candidates for collection as soon as the method exits.