Q:

Ruby program to sort the elements of the array in ascending order using the inbuilt function

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers then we will sort the array elements in ascending order using the inbuilt function sort() and print the updated array.

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 sort the elements of the array in ascending order using the inbuilt function is given below. The given program is compiled and executed successfully.

# Ruby program to sort the elements of the array 
# in ascending order using inbuilt function

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

result = arr.sort();

print "Sorted array is: \n",result,"\n";

Output:

Sorted array is: 
[10, 20, 20, 30, 30, 50]

Explanation:

In the above program, we created an array arr with some elements. Then we sorted the array elements in ascending order using the sort() function and printed the updated array.

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 sort the elements of the array in ... >>
<< Ruby program to reverse the elements of the array ...