Which one of the following is treated as single dimensional array of characters?
Array
Literal
linear array
Matrix
Which process is used for rearranging the data in a given array?
Sorting
Merging
Searching
None
Which of the following is a use of one dimensional arrays?
list processing
matrix operations
searching
soring
Which type of array is comprised of homogenous elements?
multi dimensional
two dimensional
jagged
one dimensional
Which of the following is applicable to an array?
One-dimensional only
two-dimensional only
multidimensional
All the above
Which of the following is a collection of variables of the same type that are referenced by a common name?
Structure
Group of variables
reference
What is the alternate name of index?
indices
index value
subscript
superscript
Where are two-dimensional arrays stored in memory?
list
row-column matrix
row
column
How can be represented the matrix elements?
2D array
string array
1D array
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)