Question
Code in Java TASK #0 Create a static method that accepts a 1D integer array and displays its contents to the console as shown. TASK
Code in Java
TASK #0
Create a static method that accepts a 1D integer array and displays its contents to the console as shown.
TASK #1
Create a static method that accepts 3 integer parameters and returns a 1D integer array containing the parameters as elements in the array. Numbers should be assigned indexes in order [0] [1]etc.
TASK #2
Create a static method that accepts no parameters and returns a 1D integer array containing randomly-generated values between 0 and 9. Numbers should be assigned indexes in order [0] [1]etc.
TASK #3
Create a static method that accepts a 1D integer array and returns a double which is square root of the sum of the squared values in the array. This represents the magnitude of a vector.
TASK #4
Create a static method that accepts two 1D integer array and returns a new 1D integer array which is the result of adding the two parameter arrays together.
TASK #5
Create a static method that accepts two 1D integer array and returns a new 1D integer array which is the result of subtracting the two parameter arrays .
TASK #6
Create a static method that accepts a 1D integer array and an integer (scalar) as parameters and returns a new 1D integer array which is the result of multiplying each value in the array by the integer.
TASK #7
Create a static method that accepts two 1D integer arrays as parameters and returns an integer (scalar) which is the result of multiplying the corresponding individual values of the arrays together and summing the product.
TASK #8
Create a static method that accepts two 1D integer arrays as parameters and returns true if the Dot Product (see slide 13) is 0 and false otherwise.
TASK #9
Create a static method that accepts two 1D integer arrays as parameters and returns a double. This represents the Euclidean distance between the arrays (vectors).
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started