Enums define a fixed set of constants. Frame the concept in practical terms so you can explain it during interview discussion.
Enums provide a type-safe way to define a set of named constants. For example, in an e-commerce project, you might use an enum to define different payment statuses like PENDING, COMPLETED, and FAILED. This ensures that only valid statuses are used throughout your code.