Que: What is wrong with the following statement?

Dim strCities As String = {"Bombay", "Chennai", "Ladakh", "Tamil Nadu"}
a. static keyword missing
b. array elements should be initialized using single quotes
c. array elements should be in square brackets
d. array name should be strCities()
Answer: array name should be strCities()

Leave a Comment