Q:

Ruby program to get the subarray from an array using a specified range of indices

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers with few elements. Then we will get the subarray from the created array using a specified range of indices.

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 get the subarray from an array using a specified range of indices is given below. The given program is compiled and executed successfully.

# Ruby program to get the subarray from an array 
# using specified range of indices

arr = [100,101,102,103,104,105,106,107,108,109];
subarr = arr.slice(3,5);

print "Array: ",arr,"\n";
print "Sub Array: ",subarr,"\n";

Output:

Array: [100, 101, 102, 103, 104, 105, 106, 107, 108, 109]
Sub Array: [103, 104, 105, 106, 107]

Explanation:

In the above program, we created an array of integers with few elements. Then we got the subarray from the created array using the slice() method. After that, we printed the elements of array and subarray.

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 the last item from the arra... >>
<< Ruby program to push an array into another array...