Page 1 of 1

1/Program 1 public class T1_3 { public static void main (String[] args) { int[][] arr = { {7,2,6},{6,3,2} }; for (int ro

Posted: Fri May 20, 2022 11:43 am
by answerhappygod
1 Program 1 Public Class T1 3 Public Static Void Main String Args Int Arr 7 2 6 6 3 2 For Int Ro 1
1 Program 1 Public Class T1 3 Public Static Void Main String Args Int Arr 7 2 6 6 3 2 For Int Ro 1 (72.55 KiB) Viewed 28 times
sir only have 30 min to ans please helpppppp
1/Program 1 public class T1_3 { public static void main (String[] args) { int[][] arr = { {7,2,6},{6,3,2} }; for (int row = 1; row < arr.length; row++) { for (int col = 0; col < arr[0].length; col++) { if (arr[row][col] % 2 == 1) arr[row][col] = arr[row][col] + 1; else arr[row][col] = arr[row][col] * 2; } } } ) What is the content of arr[][], after Program lis executed? arr[0][0]= arr[0][1]= arr[0][2]= arr[1][0]= arr[1][1]= arr[1] [2]=