Quiz Complete, well Done!
5. A 2 dimensional array can store
or heterogeneous elements.
What is the space complexity of a 2 Dimensional Array with n rows and m columns?
Elements
Index
1. The size of a 2 dimensional array is determined by the number of
and columns.
Rows
Array Length
How do you access an element in a 2 dimensional array?
How do you declare a 2 dimensional array in C++?
What is the syntax for accessing an element in a 2 Dimensional Array?
A 2 dimensional array can store elements of the same
.
8. A 2 dimensional array can be used to represent a
or a table.
Which of the following is the correct syntax to initialize a 2 Dimensional Array in C++?
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.
Column
What is the size of a 2 dimensional array with 3 rows and 4 columns?
Row
Columns
How do you iterate through a 2 Dimensional Array?
Which indexing is used in a 2 dimensional array?