Computer Science, asked by priyamnarayansinghal, 4 hours ago

All the values in ________ are of same type.​

Answers

Answered by mukeshsharma4365
2

Answer:

Some common data types include integers, floating point numbers, characters, strings, and arrays. They may also be more specific types, such as dates, timestamps, boolean values, and varchar (variable character) formats.

Answered by monica789412
0

All the values present inside the array have the same variable name and the same datatype.

Detailed Explanation:

  • An array is the set of elements of the same datatype that are bind together and are identifies by the pair of square brackets '[ ]'.
  • When we declare an array three things need to be specified: variable name, datatype, and the size.
  • An array is a data structure that is made up of parts that are all of the same type and stores data in a sequence of consecutively numbered index.
  • Each element of the array can be accessed by using its index that's why setting size while declaration is useful.
Similar questions