adplus-dvertising
frame-decoration

Question

While mentioning the array size in a multidimensional array using the new keyword, the left-most script is mandatory. State TRUE or FALSE.
int ary[][];
ary = new int[5][];//first dimension is compulsory.

a.

FALSE

b.

TRUE

c.

May be TRUE or FALSE

d.

Can't Say

Answer: (b).TRUE

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. While mentioning the array size in a multidimensional array using the new keyword, the left-most script is mandatory. State TRUE or FALSE.

Similar Questions

Discover Related MCQs

Q. State TRUE or FALSE. In a multidimensional array, the number of Columns in each Row can be different.
1
2 3
4 5 6

Q. Choose the correct way of initializing a multidimensional array below.

Q. A 4-dimensional array is an array of ___ dimensional arrays.

Q. Row number and Column number in a Multidimensional array start with ___.

Q. An array with two dimensions is called a two-dimensional array in Java. State TRUE or FALSE.

Q. An array of dimension N contains __ number of subscripts or brackets?

Q. A multidimensional array contains elements of the same data-type in all rows and columns. State TRUE or FALSE.

Q. An array of arrays in Java is called ___ array.

Q. Allocating memory with the keyword "new" causes the array elements to carry default values. State TRUE or FALSE.

Q. What is the default value of boolean data type elements of an array in Java?

Q. What is the default value of a char data type elements of an array in Java?

Q. What is the default value of float or double data type elements of an array in Java?

Q. What is the default value of byte, short, int or long data type elements of an array in Java?

Q. What is the default value of an element of Object type array?

Q. Lazy initialization of array requires the keyword "new" to allocate memory to the array and its elements. State TRUE or FALSE.

Q. Shorthand array initialization in Java needs the keyword "new" to allocate memory to the array and elements. State TRUE or FALSE.

Q. The name of an array variable or identifier can start with ___.

Q. An array in Java can be declared only of some predefined types. (TRUE/FALSE)

Q. If an index of an element is N, what is its actual position in the array?

Q. We should not specify the array size if declaration and initialization are done at the same time. (TRUE / FALSE)