In which of these enumerations and cases might raw values come in handy?

case penny, nickel
case dime, quarter
enum Weekdaycase private, workcase top, bottom

Absolutely! Raw values make sense if there are specific values associated with the cases, which is true for coins (1 to 25) and weekdays (1 to 7).

So close! Raw values make sense if there are specific values associated with the cases, which is true for coins (1 to 25) and weekdays (1 to 7).