About 9,070,000 results
Open links in new tab
  1. What is Array? - GeeksforGeeks

    Apr 12, 2025 · Array is a linear data structure where all elements are arranged sequentially. It is a collection of elements of same data type stored at contiguous memory locations.

  2. What is an Array? - W3Schools

    What is an Array? An array is a collection of values. The image below shows how we can think of an array named myFruits, with the values 'banana', 'apple', and 'orange' stored inside it.

  3. Array (data structure) - Wikipedia

    Array (data structure) In computer science, an array is a data structure consisting of a collection of elements (values or variables), of same memory size, each identified by at least one array …

  4. What is an Array? Types of Array | Great Learning

    Jan 13, 2025 · What is an Array? An array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be …

  5. What is an Array? Understanding the Basics and Defining Array

    An array is a data structure that stores a fixed-size collection of elements such as integers or strings, sequentially in memory. Each element in the array is accessed using an index, starting …

  6. What is an Array in Coding? Definition, How it Works, and Examples

    Aug 13, 2025 · An array is a simple yet powerful data structure that stores a fixed-size sequence of elements of the same type in contiguous memory. Its efficiency in accessing and …

  7. What Is an Array? - Computer Hope

    Jun 1, 2025 · With programming, an array is a group of related data values (called elements) that are grouped. All the array elements must be the same data type. The examples below show …

  8. What is an Array? - algo.monster

    Arrays are one of the most fundamental data structures in programming. An array is a collection of elements stored in contiguous memory locations —meaning they sit side-by-side in the …

  9. What is an Array? (with Examples) | Intellipaat

    Jul 25, 2025 · An array is a crucial data structure in computer programming that allows for the organized storage of multiple elements under a single variable name. These elements can be …

  10. What is an array? - Arrays and lists - KS3 Computer Science

    What is an array? An array is a series of memory locations – or ‘boxes’ – each of which holds a single item of data, but with each box sharing the same collective name.