What is an array?

Arrays Linked Lists Questions



46 Short 80 Medium 67 Long Answer Questions Question Index

What is an array?

An array is a data structure that stores a fixed-size sequence of elements of the same type. It allows for efficient access to individual elements based on their index position. The elements in an array are stored in contiguous memory locations, making it easy to iterate over them sequentially.