Q:

Ruby program to demonstrate the delete_if() method

0

In this program, we will create a hash collection then we will remove some elements from the hash collection based on the condition specified in the delete_if() method.

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 demonstrate the delete_if() method is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to demonstrate the 
# delete_if() method

hash = { "a" => 100, "b" => 200, "c" => 300,"d" => 400};

puts "Hash collection before deletion: ",hash;

result = hash.delete_if{|key, value| value <= 200 };
puts "Hash collection after deletion: ",result;

Output:

Hash collection before deletion: 
{"a"=>100, "b"=>200, "c"=>300, "d"=>400}
Hash collection after deletion: 
{"c"=>300, "d"=>400}

Explanation:

In the above program, we created a hash collection to store student information. Then we used the delete_if() method to remove elements from the hash collection based on the specified condition. After that, we printed the result hash 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