Enums can include methods for behavior. Frame the concept in practical terms so you can explain it during interview discussion.
Enums can have methods, which allows them to encapsulate behavior along with their constants. This is useful for associating actions or properties with each constant. For example, in a PaymentStatus enum, you could add a method to get a user-friendly message for each status.