Which of the following code segments sets all elements of the array strStudentNames to the value NONE?
a. ```Dim intCount as Integer
For intCount = 1 to (strStudentNames.Length - 1)
strStudentNames(intCount) = "NONE"
Next intCount
```
b. ```Dim intCount as Integer
For intCount = 0 to (strStudentNames.Length - 1)
strStudentNames(intCount) = "NONE"
Next intCount
```
c. ```Dim intCount as Integer
For intCount = 0 to (strStudentNames.Length)
strStudentNames(intCount) = "NONE"
Next intCount
```
d. ```Dim intCount as Integer
For intCount = 1 to (strStudentNames.Length)
strStudentNames(intCount) = "NONE"
Next intCount
```
b. ```Dim intCount as Integer
For intCount = 0 to (strStudentNames.Length - 1)
strStudentNames(intCount) = "NONE"
Next intCount
```
You might also like to view...
The DatePart function contains ________ arguments
A) 4 B) 5 C) 6 D) 3
What is printed by the program that follows?
```
#include