Q:

Ruby program to push an array into another array

belongs to collection: Ruby Arrays Programs

0

In this program, we will create two arrays of integers with few elements. Then we will push an array into another array using the push() method.

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 push an array into another array is given below. The given program is compiled and executed successfully.

# Ruby program to push an array 
# into another array

arr1 = [101,102,103,104,105];
arr2 = [106,107,108,109,110];

arr1.push(arr2);

print "Array elements: \n";

i=0;

while(i<arr1.length())
    print arr1[i],"\n";
    i = i + 1;
end

Output:

Array elements: 
101
102
103
104
105
[106, 107, 108, 109, 110]

Explanation:

In the above program, we created two arrays arr1arr2 with few elements. Then we pushed arr2 into arr1 using the push() method. After that, we printed the elements of arr1.

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 get the subarray from an array usi... >>
<< Ruby program to access array elements using at() m...