36.3k views
4 votes
What solidity data type is useful for storing a list of specific values, such as the days of the week?

1 Answer

4 votes

Answer:

Arrays

Step-by-step explanation:

Solidity is a feature in blockchain smart contracts. It is used in a program to create an interface for transacting with users of an application.

Just like in other programming concepts, the solidity environment has several data types like the unsigned integer and signed integers.

The array is a data type or structure in solidity used to hold values of similar data types.

User Kevinkt
by
5.3k points