Q:

Ruby program to insert an element into the array at the specified index

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers and insert an item at a specified index into the array using the insert() function.

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 insert an element into the array at a specified index is given below. The given program is compiled and executed successfully.

# Ruby program to insert an element into 
# array at specified index

arr = [1,2,3,4,5];

arr.insert(2,10);

print "Result:\n#{arr}";

Output:

Result:
[1, 2, 10, 3, 4, 5]

Explanation:

In the above program, we created an array arr with some elements. Then we inserted an item into the array at index 2 using the insert() function and printed the updated array.

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 insert multiple elements into the ... >>
<< Ruby program to get the flattened 1D array...