Solved

What Does the Following Section of Code Do? Dim IntCount

Question 2

Multiple Choice

What does the following section of code do? Dim intCount as Integer
Dim intXXXX as Integer = intNumbers0)
For intCount = 1 to inNumbers.Length - 1)
If intNumbersintCount) > intXXXX Then
IntXXXX = intNumbersintCount)
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

Correct Answer:

verifed

Verified

Related Questions