Q:

Ruby program to create an array using literal constructor \'[]\'

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array using literal constructor "[]" and print array elements.

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 create an array using the literal constructor "[]" is given below. The given program is compiled and executed successfully.

# Ruby program to create an array using 
# literal constructor "[]"

arr = [101,"Rahul",15000];

i=0;

while(i<3)
    puts arr[i];
    i = i + 1;
end

Output:

101
Rahul
15000

Explanation:

In the above program, we created an array using the literal constructor "[]". Then we accessed elements of an array using an index and printed them.

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 create an array using Array class... >>