Q:

Ruby program to add items into the hash collection

belongs to collection: Ruby Hashes Programs

0

In this program, we will create a hash collection and add items into the hash collection, and print created a collection.

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 add items into the hash collection is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to add items 
# into hash collection

student = {"101" => "Amit", "102" => "Arun", "103" => "Sumit"};

student["104"] = "Mohit";
student["105"] = "Mukesh";

print "Student information: \n",student;

Output:

Student information: 
{"101"=>"Amit", "102"=>"Arun", "103"=>"Sumit", "104"=>"Mohit", "105"=>"Mukesh"}

Explanation:

In the above program, we created a hash collection to store student information. Then we added new items into the collection and printed the student information.

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
How to check if a hash key exists in Ruby?... >>
<< Ruby program to get value from the hash collection...