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


c. Finds the Highest value in the array intNumbers

Computer Science & Information Technology

You might also like to view...

Creating a(n) ____ symbol is a great way to create a unique new symbol while preserving the individuality of the original symbols.

A. integrated B. baseline C. nested D. cluster

Computer Science & Information Technology

Click the File tab and Exit in order to close an application

Indicate whether the statement is true or false

Computer Science & Information Technology

To display a data value from a node in the source document, XSLT employs the _____ element.

A. ?data-value B. ?value-of C. ?select D. ?apply-value

Computer Science & Information Technology

The actions in a macro often contain ________ to determine when and how to perform the action

A) logic B) messages C) programming languages D) subactions

Computer Science & Information Technology