Ques 1 Array
Which of the following is the correct declaration of Array in Java?
Ques 2 Array
Which of the following is true about Array?
Ques 3 Array
Which two statements are true for a two-dimensional array?
i) It is implemented as an array of the specified element type
ii) Using a row by column convention, each row of a two-dimensional array must be of same size
iii) At declaration time,the number of elements of the array in each dimension must be specified
iv) All the methods of the class Object may be invoked on the two-dimensional arrary
Ques 4 Array
How can you copy the contents of one array into another in Java?