Given the following statements in VBA:
Assume that val = 4
and Option Base 0
Dim dataStr() As String
ReDim dataStr(val)
Will the ReDim statement intialise the String array dataStr to 5 empty string elements(0 to 4).
What exactly will be the contents of the Array after the execution of the ReDim statement.