Which activities allow you to iterate through an array of strings? Quiz
Answers
Answered by
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
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