Basic operation on Arrays are :
Traversal
Reading
Searching
All these
_____________ specifies the position of an array elements.
Index
Size
Name
Type
The index of the first element in an array is 0,by default the index of the first element also called ________.
Base index
First Element
Array Name (1)
None of these
The _________ statement is used to specify the array size at run time.
Dim
ReDim
Static
The _________ statement sets the number of the first element in an array to either 0 or 1.
Loop
Option base
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
Which of the following keyword is used to alter the base index?
As
To
A single dimensional array declared with the syntax:
Array name (size)
Dim Arrayname (size)
Dim ArrayName(size) As datatype
Dim name As data type
The __________ specifies the name you will use to represent the array.
Array Name
Array Size
Data type
Dim price (50) As single,declares array named price having ________ elements.
50
51
49
10