Question: Using the provided Java code, please help me create the pseudocode, flowchart ( preferred hand - drawn ) , functional requirements, and test plan /

Using the provided Java code, please help me create the pseudocode, flowchart (preferred hand-drawn), functional requirements, and test plan/Test Case Matrix for both projects. In the flowchart, please include multiple charts if there is more than one method.
import java.util.Scanner;
public class Exercise08_13{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of rows and columns in the array: ");
int rows = in.nextInt();
int columns = in.nextInt();
double[][] userArray = new double[rows][columns];
System.out.println("Enter the array:");
for (int i =0; i < userArray.length; i++){
for (int j =0; j < userArray[i].length; j++){
userArray[i][j]= in.nextDouble();
}
}
int[] location = locateLargest(userArray);
System.out.printf("The location of the largest element is (%d,%d)%n",
location[0], location[1]);
}
public static int[] locateLargest(double[][] a){
int[] location = new int[]{0,0};
double largest = a[0][0];
for (int i =0; i < a.length; i++){
for (int j =0; j < a[i].length; j++){
if (largest < a[i][j]){
largest = a[i][j];
location[0]= i;
location[1]= j;
}
}
}
return location;
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!