Q:

Ruby program to find the index of the first occurrence of the specified item in the array

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers then we will find the index of the first occurrence of a specified item in the array using the index() function and print the result.

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 find the index of the first occurrence of the specified item in the array is given below. The given program is compiled and executed successfully.

# Ruby program to find the index of the 
# first occurrence of the specified item 
# in the array

arr = [10,20,30,20,50,30];

result = arr.index(30);

print "Index of 30 is: ",result,"\n";

Output:

Index of 30 is: 2

Explanation:

In the above program, we created an array arr with some elements. Then we found the index of the first occurrence of the specified item in the array using the index function and assigned the result into the result variable and 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 reverse the elements of the array ... >>
<< Ruby program to insert multiple elements into the ...