Arrays In Data Structures - Study Mode
[#66] Which of the following statements is true about arrays?
Correct Answer
(B) Arrays have a fixed size
[#67] What is a multidimensional array?
Correct Answer
(B) An array containing multiple arrays
[#68] How are elements stored in a 2D array in memory?
Correct Answer
(A) Row-major order
[#69] What is the correct way to access the third element of an array?
Correct Answer
(A) array[2]
[#70] Which of the following methods can be used to copy an array in Java?
Correct Answer
(D) System.arraycopy()