67.4k views
11 votes
The methods of LocalDate include getMonth() and getDayOfWeek(). Each of these methods returns a(n) ____, which is a data type that consists of a list of values.

User Ruyili
by
4.2k points

1 Answer

5 votes

Answer:

enumeration

Step-by-step explanation:

In computer programming we have the data type called enumeration (enum). This is a data type that is made up of sets of values which are referred to as elements it members. It is a data type in c programming language.

It makes a program to be easy as well as readable by assigning names to constant. To declare this data type the keyword to use is enum.

User TimothyTech
by
3.8k points