Which technique is followed by binary search?
Find, search
divide, conquer
find, replace
sort, find
what would be the contents of the following array after initialization ? Int B [5] = {5,3,7,9,0,2,11 } ;
All the elements will be allocated
Only five elements will be inserted, others will be ignored
It will show exception(error)
No problem, declaration is correct
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 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
What is the starting index of an array in c++?
0
1
n
n-1
What is known as the base type of the array?
name
size
data type
key word
Which of the following is applicable to an array?
One-dimensional only
two-dimensional only
multidimensional
Unlimited capacity
What is the peculiarity in the memory locations were array elements are stored?
same place
Contiguous
descrete
same type
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