Google News
logo
CPP - Quiz(MCQ)
How many types of the array are there in the C++ programming language?
A)
In the C++ programming language, there are two types of arrays
B)
In the C++ programming language, there are three types of arrays
C)
In the C++ programming language, there are four types of arrays
D)
In the C++ programming language, there are five types of arrays

Correct Answer :   In the C++ programming language, there are two types of arrays


Explanation : In the C++ programming language, there are mainly two types of arrays that are Single Dimension arrays and Multi-Dimension arrays. In Single-Dimension arrays, the same types of values are hold in the form of a List, while on the other hand, in Multi-Dimension arrays; values are stored in the form of a matrix.

Advertisement