1. What is an array in data structures?
A collection of elements stored in contiguous memory locations, identified by index or key.
Explicación
An array is a collection of elements stored in contiguous memory locations, which allows for efficient access via indices. This distinguishes it from linked lists, which store elements in non-contiguous memory with references between nodes, and stacks or linked lists, which have different structural properties.