Q:

Ruby program to merge two hash collections

0

In this program, we will create two hash collections. Then we will merge two collections using the merge() 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 merge two hash collections is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to merge 
# two hash collections

hash1 = {"101" => "Amit", "102" => "Arun", "103" => "Sumit"};
hash2 = {"104" => "Mirnal", "105" => "Mohit"};

merged_hash = hash1.merge(hash2);
print "Merged hash collection: \n",merged_hash;

Output:

Merged hash collection: 
{"101"=>"Amit", "102"=>"Arun", "103"=>"Sumit", "104"=>"Mirnal", "105"=>"Mohit"}

Explanation:

In the above program, we created two hash collections to store student information. Then we merged two collections using the merge() method and printed the merged collection.

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now