Q:

Ruby program to compare numbers and strings using library function

belongs to collection: Ruby Basic Programs

0

In this program, we will create some variables. Then we will compare numbers and strings using library function eql?(). The eql?() function returns Boolean value true or false after comparison.

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 compare numbers and strings using the library function is given below. The given program is compiled and executed successfully.

# Ruby program to compare numbers and 
# strings using library function

num1 = 22;
num2 = 3;
num3 = 3;

str1 = "hello";
str2 = "hello";
str3 = "hi";

print num1.eql?(num2),"\n";
print num2.eql?(num3),"\n";

print str1.eql?(str2),"\n";
print str2.eql?(str3),"\n";

Output:

false
true
true
false

Explanation:

In the above program, we created some variables. Then we performed a comparison between numbers and strings using the eql?() function and printed the returned Boolean value.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to get total bits required for the gi... >>
<< Ruby program to get the remainder of float numbers...