Let's do this in easiest way..... ISC Practical 2020 **************************** HERE IS THE CODE: *************************** * import java.util.*; public class Bubble_Sort_In_Matrix_Ascending_Order { public static void main() { Scanner sc=new Scanner(System.in); int n=0,temp,i,j; System.out.println("Enter the number of Rows"); int r=sc.nextInt(); System.out.println("Enter the number of Columns"); int c=sc.nextInt(); int arr[][]=new int[r][c]; int brr[]=new int[r*c]; System.out.println("Enter the elements of Matrix"); for( i=0;i<r;i++) { for( j=0;j<c;j++) ...