Unit 6 Write Code for Toggle Code

This is the write code problems associated with the mixed up code problems.

Write a loop that traverses the array arr from 0 to less than the length of the array. In the loop, double each element in the array arr and print out each new value on the same line separated by “, “. The finished code should print “2, 4, 6, 8, 10, “.

Write a for loop that fills an array with elements that count up from 0 to 50 by 5 (0 5 10 15 20 … 50) and prints out each element on a separate line.

Write an enhanced for each loop to traverse the array and print out an element if it is even.

Finish the method to return the smallest integer in an array arr given as the parameter.

Finish the method to return the average of the elements in an array arr given as the parameter. The method should return the average.

Finish the method to return the largest integer in an array arr given as the parameter.

Finish the method that given an array as a parameter, returns the elements “right shifted” by one – so {6, 2, 5, 3} returns {3, 6, 2, 5}.

Finish the method to return a new array of length 2 containing the middle two elements of a given array of integers of even length (the parameter) – so {1,2,3,4} should return {2,3}.

Finish the method that should return string array that is in reverse order – so {"b", "a", "z"} should return {"z", "a", "b"}.

Finish the method so that it copies the first half of an array given as an argument to the method into a result array which is returned.

You have attempted of activities on this page