Code Practice with Arrays¶
Fix the E01PrintBackwards
program to print the values in the array a1
starting with the value at the last index and then backwards to the value at the first index.
Rewrite the E02RewriteLoop
program so that it prints all the values in an array arr1
using a for-each loop instead of a for
loop.
Finish the E03PrintOdd
program so that it prints out all of the odd values in the array a1
.
Finish the E04PrintOddIndices
program to print the strings at the odd indices in the array.
In the E05Initialize2DArray
program, replace the “ADD CODE HERE” with the code to declare and initialize a two-dimensional String array called students
with the names “Brice, Marvin, Anna” in the first row and “Kamal, Maria, Elissa” in the second. The finished code will print all the names in the array starting with all in the first row followed by all in the second row.
In the E06PrintNums
program, print the values 47, 51, and 20 by accessing them in the the given two-dimensional array.
In the E07PrintRowsAndCols
program, print the number of rows in the given two-dimensional array, or the length of the outer array. Then print the number of columns, or the length of each inner array.
In the E08Print2DArray
program, loop through the given two-dimensional array, printing out the values in the first row followed by those in the second row and so on.
In the E09Colors
program, declare and create a two-dimensional array of strings named colors
. Put the colors (“red”, “yellow”, “blue”) in the first row, and the colors (“orange”, “green”, “purple”) in the second row. Then print every value in the array.
Replace the “ADD CODE HERE” in the E10Count7
program with the code to count and print the number of 7’s that are in the 2d array. It should print 2.
Replace the “ADD CODE HERE” in the E11SumSecondRow
program with the code to print out the sum of the numbers in the second row of the “table” array. It should print 18.
Replace the “ADD CODE HERE” in the E12SumDiagonal
program with the code to find the sum of the values on the diagonal from [0][0] to [num rows - 1][num rows - 1] Print the sum. It should print 5.
Replace the “ADD CODE HERE” in the E13CreateArray1
program with the code to declare and create a two-dimensional array of integers numbers
with the numbers (1,2,3) in the first row, and the numbers (4,5,6) in the second row. Then loop through the two-dimensional array, printing out the values in the first row followed by those in the second row.
Replace the “ADD CODE HERE” in the E14CreateArray2
program with the code to declare and create a two-dimensional array of integers numbers
with the numbers (1,2,3) in the first row, the numbers (4,5,6) in the second row, and the numbers (7,8,9) in the third row. Then loop through the two-dimensional array, printing out the values in the first row followed by those in the second row and so on.
In the E15Replace
program, replace the “ADD CODE HERE” below with the code to replace the word “purple” with “yellow”.