COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Array
|
|
Record
|
|
Queue
|
|
List
|
|
Stack
|
Detailed explanation-1: -In computer science, an array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key.
Detailed explanation-2: -Arrays. An array is a structure of fixed-size, which can hold items of the same data type. It can be an array of integers, an array of floating-point numbers, an array of strings or even an array of arrays (such as 2-dimensional arrays). Arrays are indexed, meaning that random access is possible.
Detailed explanation-3: -Immutable data structures can be useful when storing a fixed collection of elements.
Detailed explanation-4: -Data structure where data elements are arranged sequentially or linearly where each and every element is attached to its previous and next adjacent is called a linear data structure.