Ruby program to create an array using Array class

Ruby Example: Write a program to create an array using Array class.
Submitted by Nidhi, on January 08, 2022

Problem Solution:

In this program, we will create an array using the Array class and print array elements.

Program/Source Code:

The source code to create an array using the Array class is given below. The given program is compiled and executed successfully.

# Ruby program to create an array 
# using Array class

arr = Array(101..105);

i=0;

print "Array elements: \n";

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

Output:

Array elements: 
101
102
103
104
105

Explanation:

In the above program, we created an array using the Array class. Then we accessed elements of an array using an index and printed them.

Ruby Arrays Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.