Open In App

Ruby | Numeric quo() function

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The quo() is an inbuilt method in Ruby returns the most exact division, whether it be a float or a rational one.
Syntax: num.quo() Parameters: The function needs a number which is to be checked. Return Value: It returns the most exact division.
Example 1: Ruby
# Ruby program for quo()
# method in Numeric

# Initialize a number 
num1 = 10
num2 = 7

# Prints the quo
puts num1.quo(num2)
Output:
10/7
Example 2: Ruby
# Ruby program for quo()
# method in Numeric

# Initialize a number 
num1 = 10
num2 = 5

# Prints the quo
puts num1.quo(num2)
Output:
2/1

Similar Reads