Array Elements
Index Array Size
Initialization Access
Traversal Search

 

The individual items or values stored within an array. A data structure that stores a fixed-size sequential collection of elements of the same type.
The total number of elements that can be stored in an array. A number that represents the position of an element in an array.
Retrieving the value of a specific element in an array using its index. The process of assigning initial values to the elements of an array.
Finding the presence or location of a specific element in an array. Visiting each element of an array in a sequential manner.

 

Insertion Deletion
Element Traverse
Update Sort

 

Removing an element from a specific position in an Array. Adding a new element at a specified position in an array.
Visiting each element of the array once. A single value stored in the array.
Rearranging the elements of the array in a specific order. Modifying the value of an element in the array.