Question: Write a function that takes an array A of integers as the input and does the following: (a) Uses each method to print the square
Write a function that takes an array A of integers as the input and does the following:
(a) Uses each method to print the square of each element of A, (b) Uses each_slice method to print the
elements while printing 4 elements at a time, (c) Uses select method to find the integers (in A) which are
multiple of 4, (d) Uses map method to build a new array of squares of the elements of A, and (e) Uses inject
method to find the product of all elements of A. To test the function, generate an array A of 51 random
integers between 20 and 100, and pass into the function as a parameter
In ruby language
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
