Question: you will write a method reverseArray that takes as input an int array and constructs, fills, and returns an array with the order of elements

you will write a method reverseArray that takes as input an int array and constructs, fills, and returns an array with the order of elements reversed. For example, If we declare: int[] arr = { 1, 2, 3, 4, 5 }; then reverseArray(arr) should return the array { 5, 4, 3, 2, 1 } reverseArray( { 0, -1, 6, -1, 6} ) should return the array { 6, -1, 6, -1, 0 } reverseArray( { 0 } ) should return the array { 0 }.

You must not use System.out.print or System.out.println in your method or advanced arrays or use split(). Complete the method in the space below:

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!