Define methods within the record body. Frame the concept in practical terms so you can explain it during interview discussion.
Though primarily for data, records can include custom methods within their body to add behavior. For example, in a `Rectangle` record, you can add an `area()` method: `record Rectangle(int width, int height) { int area() { return width * height; } }`.