C++ language

Answer all questions carefully. After submission, you will see a detailed result and answer review.

Question 1
A two-dimensional array is also called
Question 2
What is the last index of an array declared as int a[5];?
Question 3
Array indexing in C++ starts from
Question 4
Which of the following correctly declares an array of 10 integers?
Question 5
What is the output of the following code?

int a[3] = {10, 20, 30};
cout << a[1];
Question 6
What happens if you access an array index outside its size in C++?
Question 7
What is an array in C++?
Question 8
Which loop is most commonly used to access array elements?
Question 9
Which of the following is a correct way to initialize an array?
Question 10
How many elements does the array int x[20]; contain?