Q:

Ruby program to get the size of the hash collection

belongs to collection: Ruby Hashes Programs

0

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

# Ruby program to get the size 
# of hash collection

student = {"101" => "Amit", "102" => "Arun", "103" => "Sumit"};

print "The size of hash collection: ",student.size();

Output:

The size of hash collection: 3

Explanation:

In the above program, we created a hash collection to store student information. Then we got the size of the hash collection using the size() 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 check a given key is exist in the ... >>
<< Ruby program to merge two hash collections...