Final answer:
Enumerators in an enumerated data type are stored in memory as integers, with each enumerator typically mapped to a unique integral constant.
Step-by-step explanation:
With an enumerated data type, the enumerators are stored in memory as integers. Enumerated types in programming are a way to create a type that can represent a set of predefined values.
Each enumerated value (enumerator) is typically mapped to a unique integral constant, with the first enumerator set to a value of zero by default in languages like C and C++, and subsequent enumerators having values that increment by one. However, some languages allow the programmer to explicitly define the integer values associated with each enumerator.