1. in a ____________, you repeatedly compare pairs of items, swapping them if they are out of order, eventually creating a sorted list
a. range match
b. bubble sort
c. enhance for loop
d. float sort
2. an array that you can picture as a column of values, and whose elements you can access using one script is a _____array
a. single dimensional
b. two dimensional
c. parallel
d. column
3. how would you create an array name someNumbers that holds three rows and four columns
a. int[][] someNumbers = new int[4][3];
b int[][] someNumbers = new int[3][4];
c int[] someNumbers = new int[3][4];
d. b double[][] someNumbers = new int[3][4];
Get Answers For Free
Most questions answered within 1 hours.