Q:

Ruby program to replace the items of hash collection from another hash collection

belongs to collection: Ruby Hashes Programs

0

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

# Ruby program to replace the items of 
# hash collection from another 
# hash collection

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

puts "hash1: ",hash1;

hash1.replace(hash2);

puts "hash1: ",hash1;

Output:

hash1: 
{"101"=>"Amit", "102"=>"Arun", "103"=>"Sumit"}
hash1: 
{"104"=>"Mukesh", "105"=>"Mohit", "106"=>"Muneet"}

Explanation:

In the above program, we created a hash collection to store student information. Then we replaced the items of hash collection from another hash collection using replace() method 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 get the hash elements as a sorted ... >>
<< Ruby program to check a given key is exist in the ...