Assume we have data in a two – dimensional matrix named A. Write code that totals all the columns using one built-in function (no loop) and appends that total to the last column of the array. Show using frpintf the first column value of where the total is highest and lowest e.g. if the highest total is at row 7, show the value of column 1 row 7 – do the same for the smallest value. Calculate the average of the total, then which values in the entire original array A are above the average and where they are located. Your code must be general enough so any 2 – D array would fit in the code. The code must also be automated so no manual counting is accepted, and efficiency based on using array processing vs. loop is applied.