Multiple Choice
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
Correct Answer:

Verified
Correct Answer:
Verified
Q15: Which of the following provides the index
Q16: What value should be placed in a
Q17: Assume that an integer array named intValues
Q18: The following statements apply to a Timer
Q19: What task is accomplished by the following
Q21: What is the best way to describe
Q22: Due to their similarities, it's easy to
Q23: Which of the following code segments will
Q24: The lowest possible subscript of an array
Q25: In Visual Basic you can use the