The document lists practical programs related to 2D arrays, including operations such as displaying, summing, and filling diagonal and boundary elements. It also covers matrix transformations like transposing, sorting, and checking for properties such as symmetry and triangular forms. Additional functionalities include finding maximum/minimum values, performing matrix addition/subtraction, and manipulating rows and columns.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
2 views
2D Array Practical Programs
The document lists practical programs related to 2D arrays, including operations such as displaying, summing, and filling diagonal and boundary elements. It also covers matrix transformations like transposing, sorting, and checking for properties such as symmetry and triangular forms. Additional functionalities include finding maximum/minimum values, performing matrix addition/subtraction, and manipulating rows and columns.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
2D array practical programs
1. Display/Sum/Fill of one or both diagonals
2. Display/Sum/Fill of boundary elements 3. Display/Sum/Fill of corner elements 4. Display Transpose 5. Find maximum and minimum element of the matrix (find range and avg) 6. Find maximum and minimum from each row and column (find range and avg) 7. Display/Check upper triangular form 8. Display/Check lower triangular form 9. Check Symmetric 10. Sorting of matrix 11. Sorting of individual row and column of matrix 12. Saddle Point 13. Mirror Image of Matrix 14. Shift each row one step upwards so the first row will become the last row 2nd row will be the 1st row and so on (or in general shifting of rows and columns) 15. Rotation of a matrix 16. Sparse Matrix check 17. Equality check 18. Addition and subtraction of 2 matrices 19. Interchange the diagonals