Question: 2. Consider the textbook figure 8.5 and the slice example in the lower left corner, matrix(:4, 2:8:2). Write the corresponding Go program (hw3.go file) to


2. Consider the textbook figure 8.5 and the slice example in the lower left corner, matrix(:4, 2:8:2). Write the corresponding Go program (hw3.go file) to create and use that slice. First create a 10x10 array and populate it with numbers from 1 to 100 in a row order. Then create the slice for that array. Print the slice. Modify the array by adding 100 to all the elements in the second column. Print the slice again. The output must be: C[11 12 13 14] [31 32 33 34] [51 52 53 54] [71 72 73 74]] C[11 112 13 14] [31 132 33 34] [51 152 53 54] [71 172 73 74]] Make sure to comment your code and to explain how it works. (20 points) 2. Consider the textbook figure 8.5 and the slice example in the lower left corner, matrix(:4, 2:8:2). Write the corresponding Go program (hw3.go file) to create and use that slice. First create a 10x10 array and populate it with numbers from 1 to 100 in a row order. Then create the slice for that array. Print the slice. Modify the array by adding 100 to all the elements in the second column. Print the slice again. The output must be: C[11 12 13 14] [31 32 33 34] [51 52 53 54] [71 72 73 74]] C[11 112 13 14] [31 132 33 34] [51 152 53 54] [71 172 73 74]] Make sure to comment your code and to explain how it works. (20 points)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
