Que: What is the value of len in the following Visual Basic code?

Dim strCities() As String = {"Bombay", "Chennai", "Ladakh", "Tamil Nadu"}
Dim len As Integer
len = strCities.Length()
a. 4
b. 0
c. 3
d. 5
Answer: 4

Leave a Comment