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