×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to merge two hash collections

Last Updated : December 15, 2025

Problem Solution

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.

Ruby Hashes Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.