Access |
Retrieving the value of a specific element in an array using its index. |
Array |
A data structure that stores a fixed-size sequential collection of elements of the same type. |
Array Size |
The total number of elements that can be stored in an array. |
Deletion |
Removing an element from a specific position in an Array. |
Element |
A single value stored in the array. |
Elements |
The individual items or values stored within an array. |
Index |
A number that represents the position of an element in an array. |
Initialization |
The process of assigning initial values to the elements of an array. |
Insertion |
Adding a new element at a specified position in an array. |
Search |
Finding the presence or location of a specific element in an array. |
Sort |
Rearranging the elements of the array in a specific order. |
Traversal |
Visiting each element of an array in a sequential manner. |
Traverse |
Visiting each element of the array once. |
Update |
Modifying the value of an element in the array. |