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.
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";
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.
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.
Output:
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