Q:

Ruby program to demonstrate the Array.collect() method

belongs to collection: Ruby Arrays Programs

0

In this program, we will use the collect() method. The collect() method is used to iterate over each element of the array, allowing you to perform actions on them.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the Array.collect() method is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate the 
# Array.collect() method

arr = [10,20,30,40,50];
res = arr.collect { |item| (item * 5) + 2 }

puts "Array elements: \n",res,"\n";

Output:

Array elements: 
52
102
152
202
252

Explanation:

In the above program, we created an array arr with some elements. Then we used the collect() method. The collect() method is used to iterate over each element of the array, allowing you to perform actions on them. After that, we printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Arrays Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to remove duplicate elements from the... >>
<< Ruby program to demonstrate the Array.map() method...