What is the starting index of an array in c++?
0
1
n
n-1
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 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 form of rectangular array?
array
literal
vector
matrix
Arrays are passed by _______ and the array name is automatically converted into array pointer.
call by reference
call by value
arguments
pass by value
What is known as the base type of the array?
name
size
data type
key word
What is the starting position of subscript in array?
no fixed position
one
zero
two
What is the form of initializing an array by skipping the size of the first dimension called as?
Array initialization
Un sized array initialization
Sized array initialization
Un sized array declaration
Which memory is used for storing the 2D array?
Linear memory block
sequential memory block
direct memory block
none of these
Which type of array is comprised of homogenous elements?
multi dimensional
two dimensional
jagged
one dimensional