Question: (a) Sort the boundary elements in descending order using any standard sorting technique and rearrange them in the matrix. (b) Calculate the sum of the boundary elements. (c) Display the original matrix, rearranged matrix and sum of the boundary elements. Code: import java.util.*; class SortBoundary { int A[][], B[], m, n; static int sum=0;Read more