Start studying Chapter 8: Arrays, Chapter 9: Advanced Array Concepts. Learn vocabulary, terms, and more with flashcards, games, and other study tools.
Start studying Mr. Brewer's Java: Ch. 9 Review Questions. Learn vocabulary, terms, and more with flashcards, games, and other study tools.
1. Since the ArrayList class is part of the java.util package, you can use the java.util.*; import statement to access it. Group of answer choices
Start studying Chapter 9: Advanced Array Concepts. Learn vocabulary, terms, and more with flashcards, games, and other study tools.
When you pass a two-dimensional array to a method, you pass the array name just as you do with a one-dimensional array.
When using the Arrays.binarySearch() method, it is not necessary for the list to be in order because the binarySearch() method will sort the items when called.
When working with two-dimensional arrays, the length field holds the number of rows in an array and each row has a length field that holds the number of columns in the row.
After an array is created, its length can be increased but not decreased.
An array subscript can be an expression, but only as long as the expression evaluates to what type?
Start studying Chapter 9: Advanced Array Concepts. Learn vocabulary, terms, and more with flashcards, games, and other study tools.
When you pass a two-dimensional array to a method, you pass the array name just as you do with a one-dimensional array.
When using the Arrays.binarySearch() method, it is not necessary for the list to be in order because the binarySearch() method will sort the items when called.
When working with two-dimensional arrays, the length field holds the number of rows in an array and each row has a length field that holds the number of columns in the row.