🎴 Flashcard Mode
Visual Basic 6 Fundamentals
Card1 / 17
Mastered0
Review0
QuestionClick to flip
'To' keyword is used in declaration of
AnswerClick to flip back
A
array
💡 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.