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

2 Answers

4 votes

Answer:

10

Step-by-step explanation:

answered
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.
answered
User Villu Sepman
by
7.8k points