adplus-dvertising
frame-decoration

Question

What is the result of the following statements?
Dim strCities() As String = {"Bombay", "Chennai", "Ladakh", "Tamil Nadu"}
strCities(2)=”Kolkata”

a.

Compilation Error

b.

Runtime Error

c.

strCity array is {“Bombay”, “Ladakh”, “Kolkata”,”Tamil Nadu”}

d.

strCity array is {“Bombay”, “Chennai”,”Kolkata”, “Tamil Nadu”}

Answer: (d).strCity array is {“Bombay”, “Chennai”,”Kolkata”, “Tamil Nadu”}

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the result of the following statements?

Similar Questions

Discover Related MCQs

Q. Which of the following declares a five-element one-dimensional array?

Q. The intSales array is declared as follows:

Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}.

The statement intSales(3) = intSales(3) + 10 will

Q. The strItems array is declared as follows:

Dim strItems(20) As String.

The intSub variable keeps track of the array subscripts and is initialized to 0. Which of the following Do clauses will process the loop instructions for each element in the array?

Q. The intSales array is declared as follows:

Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}.

Which of the following If clauses determines whether the intSub variable contains a valid subscript for the array?

Q. The intNums array is declared as follows:

Dim intNums() As Integer = {10, 5, 7, 2}.

Which of the following blocks of code correctly calculates the average value stored in the array? The intTotal, intSub, and dblAvg variables contain the number 0 before the loops are processed.

Q. The intSales array is declared as follows:

Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}.

Which of the following loops will correctly add 100 to each array element? The intSub variable contains the number 0 before the loops are processed.

Q. ________ method is used to sort an array in visual basic.

Q. Arranging data in a specific order is called as ___________

Q. __________________ method is used to reverse the values.

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?