You have just started working for XYZ Solutions as a programmer. Your first assignment is to review and correct various code so that you can become familiar with the company's programs. You changed the Do clause to the correct For clause in the previous problem. You also changed the Loop keyword to the Next keyword for the For...Next loop. What else needs to be changed about the Do loop?

Respuesta :

Answer:

For intCounter = 1 To 3

Explanation:

Answer:

for intCounter As Integer = 1 To 3, this is done to get familiar with the Company's program and normally the next thing to change in the do loop.

ACCESS MORE