Open In App

Ruby | Rational positive?() function

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The positive?() is an inbuilt function in Ruby returns boolean value true if rational number is greater than zero otherwise false
Syntax: rat.positive?() Parameters: The function accepts no parameter Return Value: It returns boolean value true if rational number is greater than zero otherwise false
Example 1: Ruby
# Ruby program for positive?() method

# Initialize rational number 
rat1 = Rational(-2, 9)

# Prints the boolean value
puts rat1.positive?()
Output:
false
Example 2: Ruby
# Ruby program for positive?() method

# Initialize rational number 
rat1 = Rational('1.23')

# Prints the boolean value
puts rat1.positive?()
Output:
true

Similar Reads