About 59,100 results
Open links in new tab
  1. Array Data Structure - GeeksforGeeks

    Mar 3, 2026 · Arrays are used to build other data structures like Stack Queue, Deque, Graph, Hash Table, etc. An array is not useful in places where we have operations like insert in the middle, delete …

  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

    Arrays are used to implement mathematical vectors and matrices, as well as other kinds of rectangular tables. Many databases, small and large, consist of (or include) one-dimensional arrays whose …

  4. Array Introduction - GeeksforGeeks

    Feb 16, 2026 · Types of Arrays on the basis of Dimensions 1. One-dimensional Array (1-D Array): You can imagine a 1d array as a row, where elements are stored one after another. 2. Multi-dimensional …

  5. Arrays (Java Platform SE 8 ) - Oracle Help Center

    This class contains various methods for manipulating arrays (such as sorting and searching). This class also contains a static factory that allows arrays to be viewed as lists. The methods in this class all …

  6. Java Arrays - W3Schools

    Java Arrays Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value. To declare an array, define the variable type with square brackets [ ] :

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

    KS3 Arrays and lists What is an array? When writing programs, it is useful to use arrays and lists as they simplify programs by storing related data under one name. Part of Computer Science ...

  8. Arrays in Data Structure: Types, Uses & Examples

    Learn about Arrays in Data Structure: examples, uses, types, and more . Understand how arrays work, their applications, and various types in this tutorial.

  9. What Is an Array? | Maths Definition & Examples | Twinkl

    An array is an ordered arrangement of objects, numbers or pictures. Arrays can help children with multiplication and division.

  10. Array - JavaScript | MDN - MDN Web Docs

    Feb 24, 2026 · The Array object, as with arrays in other programming languages, enables storing a collection of multiple items under a single variable name, and has members for performing common …