Q:

Ruby program to get hash collection values as an array

belongs to collection: Ruby Hashes Programs

0

In this program, we will create a hash collection then we will get hash values as an array using the values() method, and print the result.

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 get hash collection values as the array is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to get hash collection 
# values as array

hash = {"101" => "Arun", "102" => "Sumit", "103" => "Mukesh"};

array=hash.values();

puts "Values as array: ",array;

Output:

Values as array: 
Arun
Sumit
Mukesh

Explanation:

In the above program, we created a hash collection to store student information. Then we used the values() method to get values from the hash collection as an array and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Hashes Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to demonstrate the delete_if() method... >>
<< Ruby program to search an item in the hash collect...