Question1) Write a program to input the values in a two dimensional array of integers and display the values.
Question 2) Write a program to display the values of a two dimensional array in the matrix form.
Question 3) Write a program to find out the row sum and column sum of a two dimensional array of integers.
Question 4) Write a program to double all the elements of a matrix.
Question 5) Write a program to print the left and right diagonal of a square matrix and find out their sum separately.
Question 6) Write a program to determine the sum of non diagonal elements.
Question 7) Write a program to display the upper and lower triangle of a matrix.
Question 8) Write a program to determine the sum and difference of two matrices.
Question 9) Write a program to determine the product of two matrices.
Question 10) Write a program to determine the sum of negative, positive, odd and even integers separately from a two dimensional array.
Question 11) Write a program to display those elements of a two dimensional array which are divisible by10. Also find their sum.
Question 12) Write a program to determine the sum of those numbers in the in a 2D array of integers which are divisible by 4 but less than 15.
Question 13) Write a program to print all the prime numbers from a 2D array and find out their sum.
Question 14) Write a program to transpose a square matrix.
Question 15) Write a program to find the inverse of the matrix.