The statement 'option base 100' specifies __________ index.
Base
Last
Second
N-1
The number of elements in an array is called its __________.
Value
Item
Size
Name
The _________ statement sets the number of the first element in an array to either 0 or 1.
Loop
Option base
Dim
None of these
_____________ specifies the position of an array elements.
Index
Type
Dim a As Integer,here the variable 'a' can hold:
Only one integer value at a time
More than one value at a time
Infinite integer and character values at a time. re
Dim price (50) As single,declares array named price having ________ elements.
50
51
49
10
A single dimensional array declared with the syntax:
Array name (size)
Dim Arrayname (size)
Dim ArrayName(size) As datatype
Dim name As data type
__________ arrays are dimensioned at runtime,when the array size needed depends on some condition.
Dynamic
One dimensional
Static
Fixed Sized
Suppose you want to store the scores of each player in a cricket match which of the following data type can be used for that purpose?
Function
Array
Procedure
The __________ specifies the name you will use to represent the array.
Array Name
Array Size
Data type