What does the following section of code accomplish?
```Dim intCount as Integer
Dim intXXXX as Integer = intNumbers(0)
For intCount = 1 to (inNumbers.Length - 1)
If intNumbers(intCount) < intXXXX Then
intXXXX = intNumbers(intCount)
End If
Next intCount
```
a. Finds the first element of the array intNumbers
b. Finds the last element of the array intNumbers
c. Finds the Highest value in the array intNumbers
d. Finds the Lowest value in the array intNumbers
d. Finds the Lowest value in the array intNumbers
Computer Science & Information Technology
You might also like to view...
TPS stands for ______ processing system.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
The IEEE 1394 standard defines a high-speed serial connection, known as _____________________.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology