What is the alternate name of index?
indices
index value
subscript
superscript
What is the starting index of an array in c++?
0
1
n
n-1
In which sort of data type does an array belong to?
derived type
basic
primitive
user defined
What would be the output of the following program? Void main ( ) { Char ch [10 * 1/2] = { ?T?, ?e?. ?s?, ?t?, ?\0? } ; Cout < < ch [2] < < ch [1] < < ch [3] ; }
Test
set
est
tse
What is the formula used to find out the total number of bytes required to store a two dimensional array ?
First index * Second index * size of (base type)
size of (index * size)
first index * second index
size of (first index * second index)
Which of the following is a use of one dimensional arrays?
list processing
matrix operations
searching
sorting.
What is the peculiarity in the memory locations were array elements are stored?
same place
Contiguous
descrete
same type
Which of the following is a collection of variables of the same type that are referenced by a common name?
Array
Structure
Group of variables
reference
What are legal indexes for letters?
0 through 25
0 through 10
0 through 100
0 through infinite