1.Write a Java program that computes the average of the values of a row in a twodimensional array. You should create a method with the following header: public static double averageRow(double[][] array, int row) Write a test program that reads a matrix from the user and a row index to calculate the average on. Print the result.
2.A square matrix is said to be an upper triangular matrix if the value of the cell is 0 when row > column. For example, 2 1 4 0 3 −1 0 0 −2 is an upper triangular matrix. Write a method that will check if a matrix is an upper triangular matrix: public static boolean isUpperTriangular(double[][] array) Write a test program to test your method.
Java please thank you
/*
* Java Program array row average, upper triangle check
*/
public class Main
{
private static final int M = 4;
private static final int N = 4;
static double averageRow(double[][] array, int row)
{
double sum = 0.0;
for (int i = 0; i < N; ++i) {
sum = sum + array[row][i];
}
return sum/N;
}
public static Boolean isUpperTriangular(double array[][])
{
for (int i = 1; i < M ; i++)
for (int j = 0; j < i; j++)
if (array[i][j] != 0)
return false;
return true;
}
public static void main(String argc[]){
double[][] mat = { {1.1, 3.3, 5.5, 3.3},
{0.0, 4.4, 6.6, 2.2},
{0.0, 0.0, 2.2, 5.5},
{0.0, 0.0, 0.0, 6.6} };
System.out.println("Average of 2 row: " + averageRow(mat, 2));
if (isUpperTriangular(mat))
System.out.println("Yes");
else
System.out.println("No");
}
}

1.Write a Java program that computes the average of the values of a row in a...
JAVA Write a method that returns the sum of all the elements in a specified column in a matrix using the following header: public static double sumColumn(double [][] m, int columnIndex) Write another method that returns the sum of all the elements in a specified row in a matrix using the following header: public static double sumRow( double [][] m, int rowIndex) Write a test program that reads a 3-by-4 matrix and displays the sum of each column and sum...
//please help
I can’t figure out how to print and can’t get the random numbers to
print. Please help, I have the prompt attached. Thanks
import java.util.*;
public
class
Test
{
/**
Main method */
public
static
void main(String[]
args)
{
double[][]
matrix
=
getMatrix();
//
Display the sum of each column
for
(int
col
= 0;
col
<
matrix[0].length;
col++)
{
System.out.println(
"Sum
" + col
+
" is
" +
sumColumn(matrix,
col));
}
}
/**
getMatrix initializes an...
In Java
Write a program that reads an arbitrary number of 25 integers that are positive and even. The program will ask the user to re-enter an integer if the user inputs a number that is odd or negative or zero. The inputted integers must then be stored in a two dimensional array of size 5 x 5. Please create 3 methods: 1. Write a method public static int sum2DArray( int [1] inputArray ) The method sums up all elements...
Please use public class for java. Thank you.
1. (10 points) Write a method that computes future investment value at a given interest rate for a specified number of years. The future investment is determined using the formula futurelnvestmentValue numberOfYears 12 investmentAmount X ( monthlyInterestRate) Use the following method header: public static double futurelnvestmentValue( double investmentAmount, double monthlyInterestRate, int years) For example, futureInvestmentValue 10000, 0.05/12, 5) returns 12833.59. Write a test program that prompts the user to enter the investment...
Java 1. Write a getCount method in the IntArrayWorker class that returns the count of the number of times a passed integer value is found in the matrix. There is already a method to test this in IntArrayWorkerTester. Just uncomment the method testGetCount() and the call to it in the main method of IntArrayWorkerTester. 2. Write a getLargest method in the IntArrayWorker class that returns the largest value in the matrix. There is already a method to test this in...
In JAVA: Write a method that reverses the array passed the argument and returns this array. Write a test program that prompts the user to enter ten numbers, invokes the method to reverse the numbers and display the numbers. Write a method that returns a new array by eliminating the duplicate values in the array using following method header: a. Public static int[] eliminateDuplicates(int list) b. Write a test program that reads in ten integers and invoke the method, the...
I need to Write a test program that prompts the user to enter 10 double values into an array, calls a method to calculate the average of the numbers, and displays the average. Next, write a method that returns the lowest value in the array and display the lowest number. The program should then prompt the user to enter 10 integer values into an array, calculates the average, and displays the average. The program should have two overloaded methods to...
JAVA Write a Java statement (just a single statement) to sort the second row (first row is at index 0) of the following matrix using Arrays.sort() method. double[][] matrix = {{1.2, 3.4}, {4.2, 2.1, 3.1}, {4.2, 1.9}};
Java programming: Write a program called Distribution that reads a file of double values into an array and computes and prints the percentage of those numbers within 1 standard deviation (SD), within 2 SDs, and within 3 SDs of the mean. The program should be modular and should at least contain the main method and a method for computing the above percentages given the numbers, the mean, and the standard deviation. Other required statistics should be computed in their own...
Write a java program that has a method called sameArrayBackwards. The method takes an array of integers, and checks if the numbers in the array are the same going forward as going backwards and will return a boolean (true or false) depending on the result. You can assume that there is at least one element in the array. Method Header: public static boolean sameArrayBackwards (int [] arr) You will test your method in the main method of your program by...