A single dimensional array declared with the syntax:
Array name (size)
Dim Arrayname (size)
Dim ArrayName(size) As datatype
Dim name As data type
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?
Dim
Function
Array
Procedure
Which function is used to convert a string to all lower case.
Ucase( )
Lcase( )
Ltrim( )
Rtrim( 0
The _________ statement is used to specify the array size at run time.
ReDim
Static
None of these
The statement 'option base 100' specifies __________ index.
Base
Last
Second
N-1
__________ arrays are dimensioned at runtime,when the array size needed depends on some condition.
Dynamic
One dimensional
Fixed Sized
Dim price (50) As single,declares array named price having ________ elements.
50
51
49
10
The number of elements in an array is called its __________.
Value
Item
Size
Name
____________ are used for processing an array.
Decision Structures
Iteration structures
Select case structures
__________ allows you to refer to a group of values using one name.
Arrays
Functions
Data types