Q:

Ruby program to access array elements using at() method

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers with few elements. Then we will access array elements using at() 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 access array elements using at() method is given below. The given program is compiled and executed successfully.

# Ruby program to access array elements 
# using at() method

arr = [101,102,103,104,105];

print "Array elements: \n";

i=0;

while(i<arr.length())
    print arr.at(i),"\n";
    i = i + 1;
end

Output:

Array elements: 
101
102
103
104
105

Explanation:

In the above program, we created an array of integers with few elements. Then we accessed array elements using at() method. After that, we printed array elements.

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 push an array into another array... >>
<< Ruby program to add multiple elements to the end o...