To get an index in an array and take its value for some operation is called…….
a) deleting of array
b) accessing of array
c) assigning of array
d) none of these
An array having more than one subscripts is called…….
a) one dimensional array
b) two-dimensional array
c) multi-dimensional array
d) none of these
Which of the following array store data in rows and columns?
a) one dimensional array
b) two-dimensional array
c) multi-dimensional array
d) none of these
Which of the following is the correct format for declaration of two-dimensional array?
a) int x[3][5];
b) int x{3}{5}
c) int x(3)(5)
d) none of these
Which of the following array is also called matrix in mathematics?
a) one dimensional array
b) two-dimensional array
c) multi-dimensional array
d) none of these
What is the general syntax for declaration of two-dimensional
array?
a) datatype name [row size] [column size]
b) name datatype [row size] [column size]
c) datatype name {row size} {column size}
d) none of these