Q:

Ruby program to store items into the hash collection

belongs to collection: Ruby Hashes Programs

0

In this program, we will create a hash collection then we will store items into the hash collection using the store() 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 store items into the hash collection is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to store items 
# into hash collection

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

hash.store("103", "Mukesh");
hash.store("104", "Mohit");

puts "Hash elements: ",hash;

Output:

Hash elements: 
{"101"=>"Arun", "102"=>"Sumit", "103"=>"Mukesh", "104"=>"Mohit"}

Explanation:

In the above program, we created a hash collection to store student information. Then we used the store() method to add items into the hash collection 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 convert the hash collection into t... >>
<< Ruby program to get the hash elements as a sorted ...