About 2,370,000 results
Open links in new tab
  1. Array (data structure) - Wikipedia

    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 index or key, a …

  2. 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.

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

    Arrays are named like variables. The number in brackets determines how many data items the array can hold. The array score (9) would allow ten data items to be stored. Any facility that …

  4. Arrays - Ada Computer Science

    An array is a data structure that holds a number of data items or elements of the same data type. When you want to store many pieces of data that are related and have the same data type, it …

  5. 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 …

  6. Arrays - (AP Computer Science Principles) - Vocab, Definition ...

    Arrays are a data structure that stores a fixed-size sequence of elements of the same type. They allow for efficient storage and retrieval of multiple values using a single variable.

  7. Mastering Arrays in Computer Science - numberanalytics.com

    May 27, 2025 · Arrays are a fundamental data structure in computer science, used to store and manipulate collections of data. In this article, we will explore the fundamentals and advanced …