This is Java language This is the exact method format This i
This is Java language:
This is the exact method format:
This is the driver class:
Part V: Rotate the Columns of 2D Array (3 points) Filename(s): Homework5Methods.java Write a methodpublic static void rotateRight (int[]] matrix, int numCols) that takes a 2D array of integers and rotates the elements inside of each row by numCols columns to the right. If numCols is leq 0, then no rotating takes place. The method does not return any value. Rather, the contents of the parameterSolution
Please find the required program along with its output. Please see the comments against each line to understand the step.
--------------------------------------------------------
OUTPUT:
Part 5:
Before:
1 2 3
-1 -2 -3 -4 -5
6 7 8 9
10 11
After:
2 3 1
-4 -5 -1 -2 -3
8 9 6 7
10 11
Before:
1 2 3
-1 -2 -3 -4 -5
6 7 8 9
10 11
After:
3 1 2
-4 -5 -1 -2 -3
7 8 9 6
11 10
Before:
1 2 3
-1 -2 -3 -4 -5
6 7 8 9
10 11
After:
1 2 3
-1 -2 -3 -4 -5
6 7 8 9
10 11
