Which process is used for rearranging the data in a given array?
Sorting
Merging
Searching
None
What is the limit to use a subscript based on array size declaration?.
upto the declared size
greater than declared size
upto declared size + 1
upto declared size - 1
Which of the following is applicable to an array?
One-dimensional only
two-dimensional only
multidimensional
All the above
Which string function returns the number of characters stored in the array?
Strcpy()
strcmp()
strlen()
strconcat()
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
Which of the following is a use of one dimensional arrays?
list processing
matrix operations
searching
soring
What is known as the base type of the array?
name
size
data type
key word
Which memory is used for storing the 2D array?
Linear memory block
sequential memory block
direct memory block
none of these
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 type of array is a String in terms of c++?
Single dimensional integer
One dimensional float
Single dimensional character array
One dimensional double