Solved

What Does the Following Section of Code Accomplish? Dim IntCount

Question 27

Multiple Choice

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

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions