Computer Science, asked by Sonamsinha7892, 9 months ago

Defined array and it's kind with example in computer

Answers

Answered by akdgamer
0

Answer:

In programming, a series of objects all of which are the same size and type. Each object in an array is called an array element. For example, you could have an array of integers or an array of characters or an array of anything that has a defined data type. The important characteristics of an array are:

Each element has the same data type (although they may have different values).

The entire array is stored contiguously in memory (that is, there are no gaps between elements).

Arrays can have more than one dimension. A one-dimensional array is called a vector ; a two-dimensional array is called a matrix.

Similar questions