Computer Science, asked by shivirai6954, 1 year ago

What activities can be used to iterate through an array?

Answers

Answered by ItsSpiderman44
0

Answer:

Activities which allow the users to iterate through an array of strings are:-

For each

While

Do While

Another name for for each is that it is an iterative for loop.For each loop is used for traversing various items.

A while loop on the other hand is generally a control flow statement which allows code to be executed repeatedly.

Similar questions