'To' keyword is used in declaration of
-
array
-
constant
-
integer
-
double
A
Correct answer
Explanation
In Visual Basic, the 'To' keyword is used in array declarations to specify a range, like 'Dim arr(1 To 10) As Integer'. This creates an array indexed from 1 to 10. The other options (constant, integer, double) use different declaration syntax without the 'To' keyword.