belongs to collection: Ruby Hashes Programs
In this program, we will create two hash collections. Then we will merge two collections using the merge() method and print the result.
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.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
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.
Output:
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