In which sort of data type does an array belong to?
derived type
basic
primitive
user defined
What type of array is a String in terms of c++?
single dimensional integer
one dimensional float.
single dimensional character array
One dimensional double
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)
Which technique is followed by binary search?
Find, search
divide, conquer
find, replace
sort, find
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
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 alternate name of index?
indices
index value
subscript
superscript
Which of the following is applicable to an array?
One-dimensional only
two-dimensional only
multidimensional
Unlimited capacity
What is known as the base type of the array?
name
size
data type
key word