Enumeration
- enum type is a distinct value type that declares a set of named constants
- It can decrease the possibility of using or reading wrong data
- It can exclude the possibility of duplicated data
- If we don’t declare an underlying data type, the default data type is ‘int’


