COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
List
|
|
Array
|
|
Variables
|
|
Constants
|
Detailed explanation-1: -Arrays. Arrays are collections of data items all having the same data type, accessed using a common name and an integer index. In theory arrays can have any ( positive ) number of dimensions, using one additional index for each new dimension.
Detailed explanation-2: -Array: collection of fixed number of components (elements), wherein all of components have same data type.
Detailed explanation-3: -An array type is a user-defined data type consisting of an ordered set of elements of a single data type. An ordinary array type has a defined upper bound on the number of elements and uses the ordinal position as the array index.
Detailed explanation-4: -In computer science, array is a data type that represents a collection of elements (values or variables), each selected by one or more indices (identifying keys) that can be computed at run time during program execution. Such a collection is usually called an array variable or array value.
Detailed explanation-5: -Array is defined as an ordered set of similar data items. All the data items of an array are stored in consecutive memory locations in RAM. The elements of an array are of same data type and each item can be accessed using the same name.