__________ allows you to refer to a group of values using one name.
Arrays
Procedure
Functions
Data types
In an array of 10 elements, the first elements index is ___________.
10
1
0
None of these
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)
The Base index can be changed using __________ of the following.
Dim Numbers (1 to 10) as integer
Dim Numbers To integers
Dim Numbers (1 to 10)
Dim Numbers As integer
Which of the following keyword is used to alter the base index?
Dim
As
To
Type
The __________ specifies the name you will use to represent the array.
Array Name
Array Size
Data type
Index
For list processing,which of the following type is suitable?
Single dimensional array
Two dimensional array
Multi dimensional array
____________ are used for processing an array.
Decision Structures
Iteration structures
Select case structures
Dim price (50) As single,declares array named price having ________ elements.
50
51
49
Basic operation on Arrays are :
Traversal
Reading
Searching
All these