Computer Science, asked by DRUGSTER, 30 days ago

printing all the elements of an array is an example for which operation

Answers

Answered by Rajeevsikarwar1985
1

Explanation:

Basic Operations

Traverse − print all the array elements one by one. Insertion − Adds an element at the given index. Deletion − Deletes an element at the given index.

Answered by Hansika4871
0

Printing all elements of an array is an example of traversing.

  • To traverse an array, you must access or print each element of the array exactly once in order to check or use the array's data items or values in another action or process.
  • Traversing is the process of looping through the elements of an array.
  • This method of accessing and processing is referred to as "visiting" the array.  

Similar questions