What is the term used for the number inside the brackets of an array that specifies how many values the array can hold?
a. size initialization
b. size declarator
c. subscript declarator
d. number declarator
b. size declarator
Computer Science & Information Technology
You might also like to view...
Relationship options that enable you to update records in related tables when referential integrity is enforced are known as:
a. cascade options b. parameters c. table relationships
Computer Science & Information Technology
Based on the statement below, which of the following If clauses determines whether the intSub variable contains a valid subscript for the array?Dim strColors() As String = {"red", "green", "blue"}
A. If intSub > 0 AndAlso intSub < 2 Then B. If intSub >= 0 AndAlso intSub =< 2 Then C. If intSub > 0 AndAlso intSub < 3 Then D. If intSub >= 0 AndAlso intSub =< 3 Then
Computer Science & Information Technology