__________ allows you to refer to a group of values using one name.
Arrays
Procedure
Functions
Data types
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
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)
____________ are used for processing an array.
Decision Structures
Iteration structures
Select case structures
A single dimensional array declared with the syntax:
Array name (size)
Dim Arrayname (size)
Dim ArrayName(size) As datatype
Dim name As data type
For list processing,which of the following type is suitable?
Single dimensional array
Two dimensional array
Multi dimensional array
The number of elements in an array is called its __________.
Value
Item
Size
Name
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
The _________ statement sets the number of the first element in an array to either 0 or 1.
Loop
Option base
Dim
__________ arrays are dimensioned at runtime,when the array size needed depends on some condition.
Dynamic
One dimensional
Static
Fixed Sized