Google News
logo
CPP - Quiz(MCQ)
In C++, for what purpose the "rank()" is used?
A)
It returns the maximum number of elements that can be stored in the array
B)
It returns the dimension of the specified array
C)
It returns the size of each dimension
D)
None of the above

Correct Answer :   It returns the dimension of the specified array


Explanation : In C++, one can use the rank function where he wants to know about the dimensions( e.g., single-dimension, multi-dimension) of a specific array by just passing it to the "rank()" function.

Advertisement