48.2k views
1 vote
In vbscript the array dim data(10 has _____ elements of components

User Vukojevicf
by
9.0k points

2 Answers

4 votes

Answer:

10

Step-by-step explanation:

User Volzo
by
8.6k points
6 votes
Array is a variable in which a series of values are stored.
To declare an array named Array_example that contains three elements this command should be written:
Dim Array_example(3)
With the command Dim the dimension (the length) of the array is defined.
So, dim data(10) means that the Name of the array is "data" and it has 10 elements of components.
User Villu Sepman
by
7.8k points