Solved

Match the Following Terms with Their Description

Question 2

Matching

Match the following terms with their description.

Premises:
For loop
For...Each loop
Do While loop
Loop
Do Until loop
Responses:
Used to execute a series of statements multiple times
Through an object collection or an array
Until specified condition is true
While specified condition is true
Until a specified number of loops have been completed

Correct Answer:

Do Until loop
Until specified condition is true
Do While loop
While specified condition is true
For...Each loop
Through an object collection or an array
For loop
Until a specified number of loops have been completed
Loop
Used to execute a series of statements multiple times
Related Questions