What is known as the base type of the array?
name
size
data type
key word
What is the alternate name of index?
indices
index value
subscript
superscript
What are legal indexes for letters?
0 through 25
0 through 10
0 through 100
0 through infinite
Which of the following operations can be done by a two-dimensional array?
Matrix
table
both a and b
list
When can we initialize an array?
At the time of execution
At the time of processing
At the time of declaration
It is not possible
What is the formula used to determine the total bytes required to store a one-dimensional array?
size of (type) * size of array
size of (type)
size (size of array )
type * size
What is the starting index of an array in c++?
0
1
n
n-1
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)
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