Quiz Complete, well Done!
A 2 dimensional array can store elements of the same
.
The second index of a 2 dimensional array refers to the
number.
How do you iterate over all elements in a 2 dimensional array?
3. The first element in a 2 dimensional array is located at
0 position.
Index
A 2 dimensional array is also known as a
.
Element
Which of the following is true about 2 Dimensional Array?
Traversal
|
|
|
|
|
|
|
|
|
|
Which of the following is a real-life example of a 2 dimensional array?
Nested Arrays
2. In a 2 dimensional array, the elements are accessed using
column_index.
Access
What is the time complexity of accessing an element in a 2 Dimensional Array?
6. The indices of a 2 dimensional array range from
to rows-1 for the rows and from 0 to columns-1 for the columns.
How do you find the number of columns in a 2 Dimensional Array?
What is the index of the first element in a 2 dimensional array?
Array Length
How do you declare a 2 dimensional array in C++?