


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Definitions for various terms and concepts related to arrays and timer controls in visual basic programming. Topics include array elements, subscripts, one-dimensional and two-dimensional arrays, declaring arrays, array bounds checking, for each loop, sequential search, interval and enabled properties of timer control, and anchoring and docking controls. Useful for students and lifelong learners studying visual basic programming.
Typology: Quizzes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



like a group of variables that have the same name and data type and are related in some way.Dim intArray( highestSubscript ) As Integer TERM 2
DEFINITION 2 values stored within an arrayYou can refer to an array element by intArray(2)that would be element 2 in intArray. TERM 3
DEFINITION 3 A number that identifies a specific element within an array. TERM 4
DEFINITION 4 AKA scalar variable is one that is unrelated to any other variable in memory. TERM 5
DEFINITION 5 simply a row or column of variables
resembles a table in that it has rows and columns TERM 7
DEFINITION 7 Version 1 = accessibility arrayname(highestSubscript) As datatypeVersion 2 = accessibility arrayname() As datatype = {initialValues} TERM 8
DEFINITION 8 Visual Basic does not allow a statement to use a subscript outside the range of valid subscripts for an array. TERM 9
DEFINITION 9 A special loop designed specifically to access values from arrays and array-like structuresFor Each var As type In arraystatementsNext TERM 10
DEFINITION 10 Uses a loop to examine the elements in an array, one after the other, starting with the first.
Allows an application to automatically execute code at regular time intervals.