Question: The MathVector.java file contains a class ( MathVector ) . Building on the two previous activities, write a method that takes two integer arrays, puts

The MathVector.java file contains a class (MathVector). Building on the two previous activities, write a method that takes two integer arrays, puts them inside two MathVector objects, add them and return the result.
What do you need to do in this exercise? You need to create three "instances" of the MathVector object, VectorObjectOne & VectorObjectTwo & ResultVectorObject, in your method. If you do this correctly, your method will accept a pair of 1D arrays of integers, testValuesOne and testValuesTwo, feed them into your first two objects. Then you'll apply the add() method to those two and return the result into ResultVectorObject of the form
resultObject = firstObject.add(secondObject); // result = first + second

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!