Computer Science, asked by dksingh5620, 1 year ago

Which activities allow you to iterate through an array of strings? Quiz

Answers

Answered by Geekydude121
5

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.

Answered by chinki004
1

Answer:

Explanation: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