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
```

Computer Science & Information Technology

You might also like to view...

In Excel, ________ are lines added to the top, bottom, or either side of cells to create groups or to add meaning

A) characters B) borders C) gridlines D) pixels

Computer Science & Information Technology

If you select ________, Access automatically compacts your database anytime you close it

A) Compact Now B) Compact on Exit C) Compact on Close D) Compact and Repair Database

Computer Science & Information Technology

To get to any internal object, a list must be sequentially traversed, object-by-object; starting either at the front or back of the list.

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

Computer Science & Information Technology

What are the steps involved in a quantitative assessment?

What will be an ideal response?

Computer Science & Information Technology