Value objects represent immutable data. Frame the concept in practical terms so you can explain it during interview discussion.
A value object is an object whose equality is based on its values rather than its identity. In Java, this is often implemented using final fields and no setters. For example, a Money object in an e-commerce system would be a value object because its value (amount and currency) defines its identity, not its reference.