adplus-dvertising
frame-decoration

Question

What will be the output of the following Visual Basic code?
Dim intScores As Integer = {78, 83, 75, 90}
Array.Reverse(intScores)

a.

78, 83, 75,90

b.

75,78, 83,90

c.

78,75,83,90

d.

90,75,83,78

Answer: (d).90,75,83,78

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following Visual Basic code?

Similar Questions

Discover Related MCQs

Q. Which of the following statements assigns (to the intElements variable) the number of elements contained in the intNums array?

Q. Which of the following assigns the string “Rover” to the fifth element in a one-dimensional array named strPetNames?

Q. If the elements in two arrays are related by their subscripts, the arrays are called as ________________ arrays.

Q. The strStates and strCapitals arrays are parallel arrays. If Illinois is stored in the second element in the strStates array, where is its capital (Springfield) stored?

Q. A _______________ resembles a table.

Q. We can determine number of elements in two-dimensional array by _________________

Q. The _____________ in a two-dimensional array specifies the elements row and column position.

Q. Each element in a two-dimensional array is identified by a unique combination of _______________

Q. The subscripts are _________ than the row and column in which the element is located.

Q. To traverse two dimensional array you require ________________ loops.

Q. Which of the following declares a two-dimensional array that has three rows and four columns?

Q. The intSales array is declared as follows:

Dim intSales(,) As Integer = {{1000, 1200, 900, 500, 2000}, {350, 600, 700, 800, 100}}.

The intSales(1, 3) = intSales(1, 3) + 10 statement will _______________