What is wrong with the following code?

```
Dim intIndex As Integer
For intIndex = 5 To 1
ListBox.Items.Add(intIndex.ToString)
Next
```

a. The Next statement must read Next intIndex.
b. A For Next loop cannot be used to count backward.
c. intIndex is declared incorrectly for use with this type of loop.
d. You need to specify a negative step value in order to execute this loop.

d. You need to specify a negative step value in order to execute this loop.

Computer Science & Information Technology

You might also like to view...

When the terminating condition of a recursive function is _________, the function is not called again from the currently executing call.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A student cannot join a professional network until he or she finds a job.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology